Skip to content

Merge pull request #24 from hubverse-org/znk/comply-ptc-2.0.11/22 #41

Merge pull request #24 from hubverse-org/znk/comply-ptc-2.0.11/22

Merge pull request #24 from hubverse-org/znk/comply-ptc-2.0.11/22 #41

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