Skip to content

Fix workflow names

Fix workflow names #3

Workflow file for this run

name: Go build and test
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build
run: make build-only
- name: Test
run: make test-only race