Skip to content

test

test #4

Workflow file for this run

name: Build
on:
push:
pull_request: {}
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
go:
- oldstable
- stable
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
- name: Build
run: make cross
- name: Upload macadam artifact
uses: actions/upload-artifact@v4
with:
name: amd64 linux binary
path: "./bin/macadam-linux-amd64"
test:
strategy:
matrix:
os:
- ubuntu-22.04
- macos-13
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Test
if: matrix.os != 'macOS-11'
run: make test
lint:
runs-on: ubuntu-22.04
steps:
- name: vet
run: make vet
- name: golangci-lint
uses: golangci/golangci-lint-action@v6