Skip to content

Fix/makefile comment (#10) #21

Fix/makefile comment (#10)

Fix/makefile comment (#10) #21

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: go test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Download modules
run: go mod download
- name: Vet
run: go vet ./...
- name: Test
run: go test -race -count=1 ./...