Skip to content

Trigger github workflows on wip branches #50

Trigger github workflows on wip branches

Trigger github workflows on wip branches #50

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@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: make
- name: Test
if: matrix.os != "macOS-11"
run: echo '${{ matrix.os != "macOS-11" }}' && make test

Check failure on line 33 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: 33, Col: 14): Unexpected symbol: '"macOS-11"'. Located at position 14 within expression: matrix.os != "macOS-11"
- name: vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Upload vfkit artifact
if: matrix.os == "macOS-13"
uses: actions/upload-artifact@v4
with:
name: Unsigned vfkit Universal Binary
path: "./out/vfkit"