chore(deps): bump cryptography from 41.0.7 to 42.0.8 #748
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "0 0 * * 0" | |
concurrency: | |
group: tests-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "poetry" | |
- name: Install dependencies | |
run: poetry install | |
- name: Run gitlint | |
run: poetry run gitlint --contrib contrib-title-conventional-commits | |
- name: Run black | |
run: poetry run black --check . | |
- name: Run flake8 | |
run: poetry run flake8 --exclude .venv | |
docker-tests: | |
name: Docker tests | |
runs-on: ubuntu-latest | |
needs: [lint] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set UID | |
run: echo "UID=$(id --user)" > .env | |
- name: Build the containers | |
run: make build | |
- name: Lint the code | |
run: make lint | |
- name: Run test suite | |
run: make test | |
compatibility-tests: | |
name: Compatibility tests | |
runs-on: ubuntu-latest | |
needs: [lint] | |
env: | |
ENV: dev | |
strategy: | |
matrix: | |
python_version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: ebau-gwr | |
POSTGRES_PASSWORD: ebau-gwr | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python_version }} | |
cache: "poetry" | |
- name: Set UID | |
run: echo "UID=$(id --user)" > .env | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests | |
run: poetry run pytest --no-cov-on-fail --cov --create-db -vv |