Skip to content

Initial commit

Initial commit #6

Workflow file for this run

name: Go Test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21.3"
- name: Install dependencies
run: go get .
- name: Run tests
run: go test -v ./... -bench=.