Skip to content

Feature/improve type annotations #8

Feature/improve type annotations

Feature/improve type annotations #8

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev,test,metrics]"
- name: Run ruff linter
run: ruff check benchwise tests
- name: Run ruff formatter check
run: ruff format --check benchwise tests
- name: Run mypy type checker
run: mypy benchwise --config-file=mypy.ini
- name: Run tests
run: python run_tests.py --basic