Skip to content

Fix spaces around key and message, add JoinAdd #3

Fix spaces around key and message, add JoinAdd

Fix spaces around key and message, add JoinAdd #3

Workflow file for this run

name: test
on:
push:
branches:
- main
paths:
- '.github/workflows/**'
- '**/*.go'
pull_request:
branches:
- main
paths:
- '**/*.go'
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Check out code
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
# Required: the version of golangci-lint is required and must be specified
# without patch version: we always use the latest patch version.
version: v1.63
- name: Test
run: |
go test -race -coverprofile=c.out ./...
go tool cover -html=c.out -o=coverage.html