Skip to content

feat: Adding a test suite #1

feat: Adding a test suite

feat: Adding a test suite #1

Workflow file for this run

name: Test go code
on:
- push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Test
run: go test ./... -cover