diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 5049a250..07bec67e 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -10,6 +10,9 @@ jobs: name: Go Test runs-on: ubuntu-latest steps: + - name: Check out source + uses: actions/checkout@v4 + - name: Read go version id: go_version run: | @@ -23,9 +26,6 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - - name: Check out source - uses: actions/checkout@v4 - - name: Build run: | go get -t ./... @@ -39,6 +39,9 @@ jobs: name: Integration Test runs-on: ubuntu-latest steps: + - name: Check out source + uses: actions/checkout@v4 + - name: Read go version id: go_version run: | @@ -52,9 +55,6 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - - name: Check out source - uses: actions/checkout@v4 - - name: Install dependencies run: | set -e