Skip to content

Use go run instead of prebuilt binaries #93

Use go run instead of prebuilt binaries

Use go run instead of prebuilt binaries #93

Workflow file for this run

name: test
on:
push:
branches:
- "*"
jobs:
test:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make setup
- run: make deps
- run: make test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: brpaz/hadolint-action@master