Skip to content

fixup! gh: Add ghactions build/test/lint #3

fixup! gh: Add ghactions build/test/lint

fixup! gh: Add ghactions build/test/lint #3

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
tags:
- "*"
pull_request: {}
jobs:
build:
runs-on: ${{ matrix.os }}
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
with:
go-version: ${{ matrix.go }}
- name: Build
run: make
- name: Upload macadam artifact
uses: actions/upload-artifact@v4
with:
name: amd64 linux binary
path: "./bin/macadam-linux-amd64"
test:
steps:

Check failure on line 42 in .github/workflows/macadam.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/macadam.yml (Line: 42, Col: 5): Required property is missing: runs-on .github/workflows/macadam.yml (Line: 47, Col: 5): Required property is missing: runs-on
- name: Test
if: matrix.os != 'macOS-11'
run: make test
lint:
steps:
- name: vet
run: make vet
- name: golangci-lint
uses: golangci/golangci-lint-action@v6