Skip to content

Merge pull request #17 from nrbnlulu/add-Injected-annotation #172

Merge pull request #17 from nrbnlulu/add-Injected-annotation

Merge pull request #17 from nrbnlulu/add-Injected-annotation #172

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.11.7
job:
- mypy .
- black --check .
- ruff check .
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache PIP
uses: actions/cache@v4
with:
path: |
~/.cache/pip
.venv
key: pip-${{ matrix.python-version }}-${{ hashFiles('pdm.lock') }}
- name: Install PDM
run: |
pip install pdm
pdm sync --clean
- run: pdm run ${{ matrix.job }}