Skip to content

Commit 7023197

Browse files
authored
Fix ci warning (#102)
1 parent 6c93b2c commit 7023197

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/go.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,13 @@ jobs:
3131
go: '1.13'
3232
steps:
3333

34+
- name: Check out code into the Go module directory
35+
uses: actions/checkout@v4
3436
- name: Set up Go ${{ matrix.go }}
3537
uses: actions/setup-go@v5
3638
with:
3739
go-version: ${{ matrix.go }}
3840

39-
- name: Check out code into the Go module directory
40-
uses: actions/checkout@v4
41-
4241
- name: Get dependencies
4342
run: |
4443
go get -v -t -d ./...
@@ -51,10 +50,6 @@ jobs:
5150
if: matrix.os == 'windows-latest'
5251
run: choco install curl -y
5352

54-
- name: Install curl on macOS
55-
if: matrix.os == 'macos-latest'
56-
run: brew install curl
57-
5853
- name: Build
5954
run: |
6055
make generate

0 commit comments

Comments
 (0)