diff --git a/.github/actions/go-setup-cache/action.yml b/.github/actions/go-setup-cache/action.yml index 6525e80f3..316aca3c6 100644 --- a/.github/actions/go-setup-cache/action.yml +++ b/.github/actions/go-setup-cache/action.yml @@ -56,6 +56,6 @@ runs: # cover all the bases, just to be make sure we loaded everything we'll use run: | go mod download -x - go build -o compile - go test -v -c -o compile_test + go build ./... + go test -run=nope ./... shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 87308e6a5..cd239e462 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -151,7 +151,6 @@ jobs: uses: magnetikonline/action-golang-cache@v3 with: go-version-file: src/go.mod - cache-key-suffix: -testsuite - run: mkdir testlog @@ -214,7 +213,6 @@ jobs: uses: magnetikonline/action-golang-cache@v3 with: go-version-file: src/go.mod - cache-key-suffix: -lint - name: Go Lint uses: golangci/golangci-lint-action@v3