Skip to content

docs: restructure README, move technical details to docs/ (#47) #85

docs: restructure README, move technical details to docs/ (#47)

docs: restructure README, move technical details to docs/ (#47) #85

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.22.x", "1.23.x"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- run: go test -race -coverprofile=coverage.out ./...
- uses: codecov/codecov-action@v5
if: matrix.go == '1.23.x'
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
cache: false
- uses: golangci/golangci-lint-action@v6