[poetry](deps-dev): Bump pre-commit from 3.6.2 to 3.7.0 #415
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: CI | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: "pip" | |
- name: Install poetry | |
run: python -m pip install poetry==1.6.1 | |
- name: Configure poetry | |
run: python -m poetry config virtualenvs.in-project true | |
- name: Cache Poetry | |
uses: actions/cache@v3 | |
with: | |
path: ./.venv | |
key: ${{ runner.os }}-venv-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
run: python -m poetry install | |
- name: Check formatting with black | |
run: python -m poetry run black . | |
- name: Check import order | |
run: python -m poetry run isort . --check | |
- name: Lint Dockerfile | |
uses: hadolint/hadolint-action@master | |
with: | |
dockerfile: "Dockerfile" | |
- name: Lint with flake8 | |
run: python -m poetry run flake8 --count --statistics | |
- name: Static analysis with mypy | |
run: python -m poetry run mypy | |
- name: Unittests with pytest | |
run: python -m poetry run pytest | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
# https://docs.docker.com/build/ci/github-actions/cache/#github-cache | |
- name: Python Build Cache for Docker | |
uses: actions/cache@v3 | |
with: | |
path: python-build-cache | |
key: ${{ runner.os }}-python-build-cache-${{ hashFiles('**/python.sum') }} | |
- name: Inject python-build-cache into Docker | |
uses: overmindtech/buildkit-cache-dance/inject@main | |
with: | |
cache-source: python-build-cache | |
- name: Build docker container | |
uses: docker/build-push-action@v3 | |
with: | |
tags: localbuild/testimage:latest | |
push: false | |
load: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Extract python-build-cache from Docker | |
uses: overmindtech/buildkit-cache-dance/extract@main | |
with: | |
cache-source: python-build-cache | |
- name: Scan docker image | |
uses: anchore/scan-action@v3 | |
with: | |
image: localbuild/testimage:latest | |
fail-build: false | |
output-format: table |