Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v5
- uses: pdm-project/setup-pdm@v4
with:
python-version: '3.13'
python-version: '3.14'
cache: true
cache-dependency-path: 'pylock.toml'
- name: Install check dependencies
Expand All @@ -36,3 +36,12 @@ jobs:
run: pdm install --group test
- name: Run tests
run: pdm run test
- name: Run benchmarks
run: pdm run benchmark --benchmark-save '${{ matrix.python-version }}-${{ github.sha }}'
- name: Upload benchmark results
uses: actions/upload-artifact@v4
with:
name: 'benchmarks-${{ matrix.python-version }}-${{ github.sha }}'
path: '.benchmarks/*/*.json'
include-hidden-files: true
retention-days: 1
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ coverage.xml
.hypothesis/
.pytest_cache/
cover/
.benchmarks/

# pdm
# Project moved to pylock.toml, ignore old lock file
Expand Down
Loading
Loading