Rebase to Python 3.8 #165
Workflow file for this run
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Coding style and linting checks | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
sudo apt-get install python3-venv make | |
pip3 install --upgrade pip | |
- run: make dev | |
- run: make cs lint | |
test: | |
name: Test with docker image ${{ matrix.docker-image }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
docker-image: | |
- ubuntu:focal | |
- ubuntu:jammy | |
- ubuntu:noble | |
- debian:bullseye | |
- debian:bookworm | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
sudo apt-get install python3-venv make | |
pip3 install --upgrade pip | |
- run: make DOCKER_IMAGE=${{ matrix.docker-image }} check-docker-image |