Add shuffle option to flakeguard (#1379) #114
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: Main branch breaking changes check | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
breaking-changes: | |
name: Check "main" for breaking changes before release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Set up Go 1.22.6 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.6' | |
- name: Install gorelease tool | |
run: | | |
go install golang.org/x/exp/cmd/gorelease@latest | |
- name: Run Breaking Changes Script | |
run: | | |
go run ./tools/breakingchanges/cmd/main.go --ignore tools |