diff --git a/.github/workflows/cgo.yml b/.github/workflows/cgo.yml index cb273d9a..a24af409 100644 --- a/.github/workflows/cgo.yml +++ b/.github/workflows/cgo.yml @@ -35,15 +35,12 @@ jobs: - name: Check if: runner.os == 'Linux' run: make check - env: - GO_RELEASE: ${{ matrix.version }} - name: Short Check if: runner.os != 'Linux' run: make check env: GOTEST_FLAGS: "-short" - GO_RELEASE: ${{ matrix.version }} - name: Logs if: failure() && runner.os == 'Linux' diff --git a/.github/workflows/nocgo.yml b/.github/workflows/nocgo.yml index 800cd7c0..8ef0d6cf 100644 --- a/.github/workflows/nocgo.yml +++ b/.github/workflows/nocgo.yml @@ -37,7 +37,6 @@ jobs: run: make check env: CGO_ENABLED: "0" - GO_RELEASE: ${{ matrix.version }} - name: Short Check if: runner.os != 'Linux' @@ -45,7 +44,6 @@ jobs: env: CGO_ENABLED: "0" GOTEST_FLAGS: "-short" - GO_RELEASE: ${{ matrix.version }} - name: Logs if: failure() && runner.os == 'Linux'