Skip to content

Add basic testing/CI #1

Add basic testing/CI

Add basic testing/CI #1

Workflow file for this run

name: Go Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
- name: Run tests
run: go test -v ./...