Skip to content

docs(changelog): update unreleased notes after merge #151

docs(changelog): update unreleased notes after merge

docs(changelog): update unreleased notes after merge #151

Workflow file for this run

name: CI
on:
push:
branches: [ master, v2 ]
pull_request:
branches: [ master, v2 ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: go test ./... -count=1 -race
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
skip-go-installation: true
args: --timeout 3m --verbose