Skip to content

A few simple test case to get us started and run them in CI (#52) #7

A few simple test case to get us started and run them in CI (#52)

A few simple test case to get us started and run them in CI (#52) #7

Workflow file for this run

name: Test
on:
pull_request:
push:
branches: [main]
jobs:
test:
name: Testing
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test
run: go test -timeout 30s