Skip to content

Bump the regular-updates group with 4 updates #505

Bump the regular-updates group with 4 updates

Bump the regular-updates group with 4 updates #505

Workflow file for this run

name: Tests
on: pull_request
jobs:
ruff:
name: Ruff Check & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Ruff
run: pip3 install ruff==0.6.7 # Must match version pinned in .pre-commit.yaml
- run: ruff check
- run: ruff format --check
typecheck:
name: MyPy Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: citizensadvice/python-poetry-setup-action@v1
with:
python_version: 3.12
- name: Run type check
run: poetry run mypy .
pytest:
name: Testing on python ${{ matrix.python_version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: citizensadvice/python-poetry-setup-action@v1
with:
python_version: ${{ matrix.python_version }}
- name: Run tests
run: poetry run pytest -vv
test:
# Single job for github to expect. Any merge-blocking checks should be added to the needs array
name: Gather Results
if: always()
runs-on: ubuntu-latest
needs: [ruff, pytest, typecheck]
steps:
- run: exit 1
if: ${{contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')}}