Skip to content

Add v0.1.0 release tooling; drop em dashes from README #13

Add v0.1.0 release tooling; drop em dashes from README

Add v0.1.0 release tooling; drop em dashes from README #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Build
run: go build ./...
- name: Test
run: go test -race -coverprofile=coverage.out ./...
- name: Vet
run: go vet ./...
- name: Lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.3