We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e239dcd + ffe8efa commit 14a8e92Copy full SHA for 14a8e92
1 file changed
.github/workflows/main.yml
@@ -61,20 +61,24 @@ jobs:
61
run: just test-rust
62
63
benchmarks:
64
- runs-on: ubuntu-24.04
+ runs-on: codspeed-macro
65
steps:
66
- uses: actions/checkout@v5
67
68
- name: Install just
69
uses: extractions/setup-just@v3
70
71
- - name: Install uv
+ - name: Install uv and set the latest supported Python version
72
uses: astral-sh/setup-uv@v7
73
+ with:
74
+ python-version: 3.13
75
76
+ - name: Update to a Cargo version that supports 2024 edition
77
+ run: rustup install 1.90.0 && rustup default 1.90.0
78
+
79
- name: Run benchmarks
80
uses: CodSpeedHQ/action@v4
81
with:
- token: ${{ secrets.CODSPEED_TOKEN }}
- mode: instrumentation
82
+ mode: walltime
83
run: |
- just benchmark-ci
84
+ just benchmark-ci
0 commit comments