We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbdc275 commit 5b1b30aCopy full SHA for 5b1b30a
1 file changed
go/actions/test/action.yml
@@ -1,7 +1,7 @@
1
-name: Test go extractor
2
-description: Run build, QL tests and optionally basic code sanity checks (formatting and generation)
+name: Test Go extractor
+description: Run build, QL tests, and optionally basic code sanity checks (formatting and generated code) for the Go extractor
3
inputs:
4
- go-version:
+ go-test-version:
5
description: Which Go version to use for running the tests
6
required: false
7
default: ~1.22.0
@@ -12,10 +12,10 @@ inputs:
12
runs:
13
using: composite
14
steps:
15
- - name: Set up Go
+ - name: Set up Go ${{ inputs.go-test-version }}
16
uses: actions/setup-go@v5
17
with:
18
- go-version: ${{ inputs.go-version }}
+ go-version: ${{ inputs.go-test-version }}
19
cache: false
20
id: go
21
0 commit comments