Skip to content

Add Github Actions workflow #1

Add Github Actions workflow

Add Github Actions workflow #1

Workflow file for this run

name: Compile & Test
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.23.1'
- name: Build
run: go build ./...
- name: Test
run: go test -v ./... -vet=all