Skip to content

Merge branch 'main' into zettel #222

Merge branch 'main' into zettel

Merge branch 'main' into zettel #222

Workflow file for this run

name: Go Test and Coverage
on:
push:
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test-and-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Run Tests
run: go test ./...
- name: Generate Test Coverage
run: go test -cover ./...