Skip to content

virtionet: testing connectUnixPath #464

virtionet: testing connectUnixPath

virtionet: testing connectUnixPath #464

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
tags:
- "*"
pull_request: {}
jobs:
golangci:
name: lint
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: golangci-lint
run: make lint
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- macOS-12
- macOS-13
- macOS-14
steps:
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: >-
WORKAROUND: Fetch tags that points to the revisions
checked-out(actions/checkout#1467)
run: |-
git fetch --tags --force
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: make
- name: Test
if: matrix.os != 'macOS-14'
run: make test
- name: vet
run: go vet ./...
- name: Upload vfkit artifact
if: matrix.os == 'macOS-14'
uses: actions/upload-artifact@v4
with:
name: Unsigned vfkit Universal Binary
path: "./out/vfkit"