Skip to content

very small fix

very small fix #130

Workflow file for this run

name: ci
on:
push:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
unit-test-pytest:
runs-on: ubuntu-latest
steps:
- name: Check-out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[tests,dev]"
- name: Run ruff linter
run: |
ruff check .
- name: Run tests with coverage
run: |
pytest --cov --cov-report=term --cov-report=xml --cov-branch
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}