Skip to content

fix: tweak badge formatting in README #12

fix: tweak badge formatting in README

fix: tweak badge formatting in README #12

Workflow file for this run

name: Run tests and upload coverage
on: push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.1"
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./... -coverprofile=coverage.txt
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}