Skip to content

Add support for silencing mypy errors #35

Add support for silencing mypy errors

Add support for silencing mypy errors #35

Workflow file for this run

name: dependencies
on:
pull_request:
paths:
- requirements*
# Only allow one instance of this workflow for each PR.
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- run: python -m pip install uv
- run: uv pip compile --extra=dev --output-file=requirements.txt setup.cfg
- run: git diff --exit-code