Skip to content
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
- "docs/**"
- "**/*.md"
- "mkdocs.yml"
schedule:
- cron: "0 0 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -67,7 +69,7 @@ jobs:

- name: Run pytest
uses: pavelzw/pytest-action@510c5e90c360a185039bea56ce8b3e7e51a16507 # v2.2.0
if: ${{ matrix.pytest == null || matrix.pytest == 'true' }}
if: ${{ (matrix.pytest == null || matrix.pytest == 'true') && (github.event_name == 'schedule' || matrix.dependencies != 'max') }}
with:
custom-pytest: uv run --frozen pytest
custom-arguments: --cov --cov-report=xml --junitxml=junit.xml -o junit_family=legacy
Expand Down Expand Up @@ -114,7 +116,7 @@ jobs:
python_version: "3.10"
uv_version: "0.6.8"
pre_commit: "false"
- dependencies: "max"
- dependencies: "max" # Cron only (Pytest skipped)
python_version: "3.14"
pre_commit: "false"
- codecov: "true"
Expand Down