Skip to content

Tweaking after benchmarks #117

Tweaking after benchmarks

Tweaking after benchmarks #117

Workflow file for this run

name: Go
on:
push:
pull_request:
env:
GOLANGCI_LINT_VERSION: v1.55.2
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
skip-cache: true
version: ${{ env.GOLANGCI_LINT_VERSION }}
- name: Test
run: go test -v ./...