diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 543d207..12264b7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,13 +11,12 @@ jobs: name: Build & Test runs-on: ubuntu-latest steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v4 - name: Set up Go 1.x uses: actions/setup-go@v5 with: go-version-file: 'go.mod' - - name: Check out code into the Go module directory - uses: actions/checkout@v4 - - name: Get dependencies run: go mod download - name: Test