Skip to content

Fix CI

Fix CI #4

Workflow file for this run

name: PR Validation
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
PR-validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Linting
run: |
pip install pre-commit
pre-commit run --all-files
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run mypy
run: |
pip install mypy
mypy . --ignore-missing-imports --exclude tests
- name: Run Tests
run: |
pip install pytest
pytest