-
Notifications
You must be signed in to change notification settings - Fork 2
CHANGED: CI triggers, release and docs #88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,8 +2,10 @@ name: docs | |
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - "v*" | ||
| branches: | ||
| - main | ||
| paths: | ||
| - 'docs/**' | ||
|
|
||
| jobs: | ||
| build-docs: | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -13,7 +13,7 @@ jobs: | |||||||
| strategy: | ||||||||
| fail-fast: false | ||||||||
| matrix: | ||||||||
| os: [windows-latest, macos-latest, ubuntu-latest ] | ||||||||
| os: [windows-latest, macos-latest, ubuntu-latest] | ||||||||
| python: ["3.11", "3.12", "3.13"] | ||||||||
|
|
||||||||
| env: | ||||||||
|
|
@@ -39,13 +39,13 @@ jobs: | |||||||
| DISPLAY: :42 | ||||||||
| run: uv run pytest --cov --color=yes --cov-report=xml | ||||||||
|
|
||||||||
| # - name: Upload coverage to Codecov | ||||||||
| # uses: codecov/codecov-action@v5 | ||||||||
| # with: | ||||||||
| # name: coverage | ||||||||
| # verbose: true | ||||||||
| # env: | ||||||||
| # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||||||||
| - name: Upload coverage to Codecov | ||||||||
| uses: codecov/codecov-action@v5 | ||||||||
| with: | ||||||||
| name: coverage | ||||||||
| verbose: true | ||||||||
| env: | ||||||||
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||||||||
|
Comment on lines
+47
to
+48
|
||||||||
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| token: ${{ secrets.CODECOV_TOKEN }} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] If your docs build depends on MkDocs or top-level config files, consider including them in the path filter so changes to configuration also trigger the docs workflow (e.g., mkdocs.yml, README.md).