Skip to content

Commit b58cea9

Browse files
committed
fix(ci): remove testing on tip
Installation on tip is not stable.
1 parent 8f95bb8 commit b58cea9

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,32 +16,17 @@ jobs:
1616
build:
1717
strategy:
1818
matrix:
19-
go-version: ['stable', 'oldstable', 'tip']
19+
go-version: ['stable', 'oldstable']
2020
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
2721

2822
runs-on: ${{ matrix.os }}
2923

3024
steps:
3125
- name: Install Go stable
32-
if: matrix.go-version != 'tip'
3326
uses: actions/setup-go@master
3427
with:
3528
go-version: ${{ matrix.go-version }}
3629

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-
4530
- name: Cache
4631
uses: actions/cache@v4
4732
with:

0 commit comments

Comments
 (0)