File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change @@ -16,32 +16,17 @@ jobs:
16
16
build :
17
17
strategy :
18
18
matrix :
19
- go-version : ['stable', 'oldstable', 'tip' ]
19
+ go-version : ['stable', 'oldstable']
20
20
os : ['macos-latest', 'windows-latest', 'ubuntu-latest']
21
- exclude :
22
- - go-version : tip
23
- os : macos-latest
24
-
25
- - go-version : tip
26
- os : windows-latest
27
21
28
22
runs-on : ${{ matrix.os }}
29
23
30
24
steps :
31
25
- name : Install Go stable
32
- if : matrix.go-version != 'tip'
33
26
uses : actions/setup-go@master
34
27
with :
35
28
go-version : ${{ matrix.go-version }}
36
29
37
- - name : Install Go tip
38
- if : matrix.go-version == 'tip'
39
- run : |
40
- go install golang.org/dl/gotip@latest
41
- $HOME/go/bin/gotip download
42
- ~/sdk/gotip/bin/go version
43
- echo "PATH=$HOME/go/bin:$HOME/sdk/gotip/bin/:$PATH" >> $GITHUB_ENV
44
-
45
30
- name : Cache
46
31
uses : actions/cache@v4
47
32
with :
You can’t perform that action at this time.
0 commit comments