Skip to content

Add License

Add License #46

Workflow file for this run

name: GoTests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test-go:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.23.0
- name: Install gotestsum
shell: bash
run: go install gotest.tools/gotestsum@latest
- name: Run tests
run: gotestsum ./...