Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@ jobs:
run: |
python -m pip install -U pip
pip install -e ".[dev]"
- name: Ruff
- name: Ruff check
run: ruff check src tests
- name: Pytest
run: pytest -q
- name: Ruff format
run: ruff format --check src tests
- name: Pytest with coverage
run: pytest --cov=src --cov-report=xml --cov-report=term
- name: Upload coverage
if: ${{ matrix.python-version == '3.12' }}
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
fail_ci_if_error: false
Loading