update requirements #147
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 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- run: 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:xenial', 'ubuntu:bionic', 'ubuntu:focal', 'debian:bullseye'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- run: pip3 install --upgrade pip | |
- run: make DOCKER_IMAGE=${{ matrix.docker-image }} check-docker-image |