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