Use the given context on F3 broadcast message #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Repeat Flaky | |
on: | |
pull_request: | |
jobs: | |
test: | |
name: ${{ matrix.test }} ${{ matrix.go }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go: | |
- 1.22 | |
- 1.23 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go ${{ matrix.go }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
cache: false | |
- name: Repeat ${{ matrix.test }} | |
run: go test -v -timeout 30m -count 50 . -failfast |