diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 6ca940e6..0cd89e46 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -30,13 +30,15 @@ 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 uses: golangci/golangci-lint-action@v3 - name: Upload vfkit artifact - if: matrix.os == "macOS-13" + if: matrix.os == 'macOS-13' uses: actions/upload-artifact@v4 with: name: Unsigned vfkit Universal Binary