Drop Python 3.8 support #467
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ARM64 Pi | |
on: | |
push: | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pguyot/arm-runner-action@v2 | |
with: | |
base_image: raspios_lite_arm64:latest | |
image_additional_mb: 1024 | |
commands: | | |
sudo apt install -y python3 python3-pip python3-venv | |
python3 -m venv .venv | |
. .venv/bin/activate | |
pip3 install . | |
make test-base |