Skip to content

Resolve #8: static type checking enforced and passing #43

Resolve #8: static type checking enforced and passing

Resolve #8: static type checking enforced and passing #43

name: Python Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
cache: 'pip'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
- name: Static Lint
run: |
ruff . --verbose --output-format=github
- name: Static Type Check
run: |
mypy --verbose
- name: Test
run: |
pytest --verbose