Skip to content

fixup! fixup! debug CI failures #51

fixup! fixup! debug CI failures

fixup! fixup! debug CI failures #51

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/compile.yml (Line: 41, Col: 13): Unexpected symbol: '"macOS-13"'. Located at position 14 within expression: matrix.os == "macOS-13"
uses: actions/upload-artifact@v4
with:
name: Unsigned vfkit Universal Binary
path: "./out/vfkit"