We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f46fd35 commit 1aa3b2fCopy full SHA for 1aa3b2f
1 file changed
.github/workflows/flake-that.yaml
@@ -0,0 +1,26 @@
1
+name: Repeat Flaky Tests
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ test:
8
+ name: ${{ matrix.test }} ${{ matrix.go }}
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ go:
14
+ - 1.22
15
+ - 1.23
16
17
+ - TestF3
18
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ with:
22
+ submodules: 'recursive'
23
+ - name: Repeat ${{ matrix.test }}
24
+ run: go test -timeout 10m -count 10 -v --run='^${{ matrix.test }}' --failfast .
25
+ - name: Repeat ${{ matrix.test }} with race detector
26
+ run: go test -timeout 10m -count 10 -v --race --run='^${{ matrix.test }}' --failfast .
0 commit comments