We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent facebaf commit 5df4c69Copy full SHA for 5df4c69
.github/workflows/ci.yml
@@ -221,8 +221,18 @@ jobs:
221
run: cargo nextest run --no-run ${{ matrix.test-args }}
222
223
- name: Run tests
224
+ if: matrix.os != 'ubuntu-24.04'
225
run: cargo nextest run --profile ci ${{ matrix.test-args }}
226
227
+ - name: Run tests (loop for Linux)
228
+ if: matrix.os == 'ubuntu-24.04'
229
+ shell: bash
230
+ run: |
231
+ for i in {1..100}; do
232
+ echo "Run #$i"
233
+ cargo nextest run --profile ci ${{ matrix.test-args }} || exit 1
234
+ done
235
+
236
- name: Run doc tests
237
run: cargo test --doc ${{ matrix.test-args }}
238
0 commit comments