build(deps): bump github.com/spf13/pflag from 1.0.7 to 1.0.10 #938
Workflow file for this run
This file contains hidden or 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: | |
golangci: | |
name: lint | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- 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-13 | |
- macOS-14 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v5 | |
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: Install qemu-img | |
run: | | |
brew update | |
brew install qemu | |
- name: Verify qemu-img is installed | |
run: qemu-img --version | |
- 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" |