Skip to content

Commit 5b1b30a

Browse files
redsun82mbg
andauthored
Apply suggestions from code review
Co-authored-by: Michael B. Gale <[email protected]>
1 parent bbdc275 commit 5b1b30a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

go/actions/test/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: Test go extractor
2-
description: Run build, QL tests and optionally basic code sanity checks (formatting and generation)
1+
name: Test Go extractor
2+
description: Run build, QL tests, and optionally basic code sanity checks (formatting and generated code) for the Go extractor
33
inputs:
4-
go-version:
4+
go-test-version:
55
description: Which Go version to use for running the tests
66
required: false
77
default: ~1.22.0
@@ -12,10 +12,10 @@ inputs:
1212
runs:
1313
using: composite
1414
steps:
15-
- name: Set up Go
15+
- name: Set up Go ${{ inputs.go-test-version }}
1616
uses: actions/setup-go@v5
1717
with:
18-
go-version: ${{ inputs.go-version }}
18+
go-version: ${{ inputs.go-test-version }}
1919
cache: false
2020
id: go
2121

0 commit comments

Comments
 (0)