Skip to content

Use the given context on F3 broadcast message #16

Use the given context on F3 broadcast message

Use the given context on F3 broadcast message #16

Workflow file for this run

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 60m -count 50 ./... -failfast