Skip to content

Add go report badge and fix typo in comment. #8

Add go report badge and fix typo in comment.

Add go report badge and fix typo in comment. #8

Workflow file for this run

name: CI Build
on:
push:
branches: [ "main" ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.23.4'
- name: Build
run: go build
- name: Test
run: go test -v ./...
- name: Update coverage badge
uses: ncruces/go-coverage-report@main