Skip to content

Remove PDM and switch back to good old pip-tools/pip-compile #12

Remove PDM and switch back to good old pip-tools/pip-compile

Remove PDM and switch back to good old pip-tools/pip-compile #12

name: run-code-checks
on: [push]
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/requirements-dev.txt -e .
- name: lint
run: |
ruff . --fix
ruff format .
- name: type check
run: |
mypy .
- name: run tests
run: |
pytest