Skip to content

Better readme

Better readme #101

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
paths-ignore:
- '**.md'
pull_request:
branches: [main]
paths-ignore:
- '**.md'
permissions:
contents: read
jobs:
test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install go-task
uses: go-task/setup-task@v1
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1.6
- name: Download modules
run: go mod download
- name: Run task check
run: task check
- name: Verify working tree clean
run: git diff --exit-code
- name: Test race conditions
run: task test-race