Skip to content

implements [support mapping of tasks.json task_id values to ptc task_… #42

implements [support mapping of tasks.json task_id values to ptc task_…

implements [support mapping of tasks.json task_id values to ptc task_… #42

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