diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 6ca940e6..bfc37324 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -30,7 +30,9 @@ jobs: run: make - name: Test if: matrix.os != 'macOS-11' - run: echo "${{ matrix.os != 'macOS-11' }}" && make test + env: + TEST_ENV: ${{ matrix.os != 'macOS-11' }} + run: echo "${TEST_ENV}" && make test - name: vet run: go vet ./... - name: golangci-lint