We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e239dcd commit 91866a2Copy full SHA for 91866a2
1 file changed
.github/workflows/main.yml
@@ -61,20 +61,25 @@ 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:
82
token: ${{ secrets.CODSPEED_TOKEN }}
- mode: instrumentation
83
+ mode: walltime
84
run: |
- just benchmark-ci
85
+ just benchmark-ci
0 commit comments