Skip to content

Commit c6274a5

Browse files
authored
Rename Flakeguard presentation properly (#1628)
1 parent 84eb8e7 commit c6274a5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/framework-golden-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
- name: Set up Go
8585
uses: actions/setup-go@v5
8686
with:
87-
go-version: 1.23
87+
go-version: stable
8888
- name: Cache Go modules
8989
uses: actions/cache@v4
9090
with:

.github/workflows/framework.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Set up Go
3939
uses: actions/setup-go@v5
4040
with:
41-
go-version: 1.23
41+
go-version: stable
4242
- name: Cache Go modules
4343
uses: actions/cache@v4
4444
with:

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
name: Clean go mods
2727
runs-on: ubuntu-latest
2828
steps:
29-
- name: Set up Go 1.23.3
29+
- name: Set up Go
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: '1.23.3'
32+
go-version: stable
3333
- name: Install gomods
3434
run: go install github.com/jmank88/[email protected]
3535
- name: Check out code
@@ -88,7 +88,7 @@ jobs:
8888
use-go-cache: true
8989
go-cache-dep-path: ${{ matrix.project.path }}go.sum
9090
- name: golangci-lint ${{ needs.tools.outputs.golangci-lint-version }}
91-
uses: golangci/golangci-lint-action@051d91933864810ecd5e2ea2cfd98f6a5bca5347 # v6.3.2
91+
uses: golangci/golangci-lint-action@e0ebdd245eea59746bb0b28ea6a9871d3e35fbc9 # v6.3.3
9292
with:
9393
version: v${{ needs.tools.outputs.golangci-lint-version }}
9494
args: --out-format checkstyle:golangci-lint-report.xml

tools/flakeguard/reports/presentation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func buildSettingsTable(testReport *TestReport, maxPassRatio float64) [][]string
157157
{"**Setting**", "**Value**"},
158158
{"Project", testReport.GoProject},
159159
{"Max Pass Ratio", fmt.Sprintf("%.2f%%", maxPassRatio*100)},
160-
{"Test Run Count", fmt.Sprintf("%d", testReport.SummaryData.UniqueTestsRun)},
160+
{"Test Run Count", fmt.Sprintf("%d", testReport.SummaryData.TestRunCount)},
161161
{"Race Detection", fmt.Sprintf("%t", testReport.RaceDetection)},
162162
}
163163
if len(testReport.ExcludedTests) > 0 {

0 commit comments

Comments
 (0)