chore(image): test against latest fossology build #429
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: Static Checks | |
on: | |
push: | |
jobs: | |
test: | |
name: Static Checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
container: | |
- 'python:3.10-slim' | |
- 'python:3.11-slim' | |
container: ${{ matrix.container }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install host dependencies | |
run: | | |
apt-get -qq update | |
apt-get install -qq gcc git | |
rm -rf /var/lib/apt/lists/* | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install --with=dev | |
- name: Check format with black | |
run: poetry run poe format | |
- name: Lint with flake8 | |
run: poetry run poe style | |
- name: Sort imports with isort | |
run: poetry run poe imports | |
- name: Check types with mypy | |
run: poetry run poe types |