Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Test
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: go test ./... -v -coverprofile=coverage.out
- name: Generate coverage report
if: always()
run: go tool cover -func=coverage.out