We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
prepare-test
1 parent 429b71e commit 71d8deeCopy full SHA for 71d8dee
.github/actions/prepare-test/action.yml
@@ -12,6 +12,10 @@ inputs:
12
description: "If true, we setup kotlin"
13
default: 'true'
14
required: true
15
+ setup-go:
16
+ description: "If true, we setup go"
17
+ default: 'true'
18
+ required: true
19
outputs:
20
tools-url:
21
description: "The value that should be passed as the 'tools' input of the 'init' step."
@@ -80,3 +84,8 @@ runs:
80
84
if: ${{ inputs.setup-kotlin == 'true' }}
81
85
with:
82
86
version: 1.8.21
87
+
88
+ - uses: actions/setup-go@v5
89
+ if: ${{ inputs.setup-go == 'true' }}
90
+ with:
91
+ go-version: ">=1.21.0"
0 commit comments