From 7023197dfcf5f32cecf0d4f6900deb34c605e8c1 Mon Sep 17 00:00:00 2001 From: Haonan Date: Wed, 17 Jul 2024 11:56:10 +0800 Subject: [PATCH] Fix ci warning (#102) --- .github/workflows/go.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index f9fd3d3..9ddba46 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -31,14 +31,13 @@ jobs: go: '1.13' steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v4 - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - - name: Check out code into the Go module directory - uses: actions/checkout@v4 - - name: Get dependencies run: | go get -v -t -d ./... @@ -51,10 +50,6 @@ jobs: if: matrix.os == 'windows-latest' run: choco install curl -y - - name: Install curl on macOS - if: matrix.os == 'macos-latest' - run: brew install curl - - name: Build run: | make generate