Skip to content

Commit f446128

Browse files
committed
updated documentation
1 parent 26ecf07 commit f446128

6 files changed

Lines changed: 312 additions & 48 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,12 @@ jobs:
2727
- name: Format
2828
run: uv run ruff format --check structflo/ tests/
2929

30-
- name: Test
31-
run: uv run pytest -q
30+
- name: Test with coverage
31+
run: uv run pytest -q --cov=structflo --cov-report=xml
32+
33+
- name: Upload coverage to Codecov
34+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
35+
uses: codecov/codecov-action@v4
36+
with:
37+
files: coverage.xml
38+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)