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.
1 parent 9a4b3d2 commit a9ad894Copy full SHA for a9ad894
.github/workflows/test.yml
@@ -12,16 +12,11 @@ jobs:
12
name: Test
13
runs-on: ubuntu-latest
14
steps:
15
- # https://github.com/actions/setup-go/issues/21#issuecomment-565704236
16
- - name: Install gotip
17
- run: |
18
- git clone --depth=1 https://go.googlesource.com/go $HOME/gotip
19
- cd $HOME/gotip/src
20
- ./make.bash
21
- echo "GOROOT=$HOME/gotip" >> $GITHUB_ENV
22
- echo "$HOME/gotip/bin:$PATH" >> $GITHUB_PATH
23
- name: Check out code into the Go module directory
24
- uses: actions/checkout@v1
+ uses: actions/checkout@v2
+ - uses: actions/setup-go@v2
+ with:
+ go-version: '^1.18'
25
- name: Declare some variables
26
id: vars
27
run: |
0 commit comments