Skip to content

Merge pull request #7 from ognick/release_2.1.1 #31

Merge pull request #7 from ognick/release_2.1.1

Merge pull request #7 from ognick/release_2.1.1 #31

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.22.x]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go mod download
- name: Run linter
uses: golangci/golangci-lint-action@v4
with:
version: latest
- name: Run tests
run: go test -v -race ./...