fixup! fixup! debug CI failures #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
- "*" | ||
tags: | ||
- "*" | ||
pull_request: {} | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- macOS-11 | ||
- macOS-12 | ||
- macOS-13 | ||
go: | ||
- stable | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go }} | ||
- name: Build | ||
run: make | ||
- name: Test | ||
if: matrix.os != 'macOS-11' | ||
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" | ||
Check failure on line 41 in .github/workflows/compile.yml GitHub Actions / BuildInvalid workflow file
|
||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Unsigned vfkit Universal Binary | ||
path: "./out/vfkit" |