Skip to content

Bump golangci/golangci-lint-action from 4 to 5 #115

Bump golangci/golangci-lint-action from 4 to 5

Bump golangci/golangci-lint-action from 4 to 5 #115

Workflow file for this run

name: Run tests
on: [ push, pull_request ]
jobs:
test:
strategy:
matrix:
go-versions: [ 1.18.x, 1.19.x, 1.20.x ]
platform: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race ./...