Skip to content

Bump golangci/golangci-lint-action from 5.1.0 to 6.0.1 #21

Bump golangci/golangci-lint-action from 5.1.0 to 6.0.1

Bump golangci/golangci-lint-action from 5.1.0 to 6.0.1 #21

Workflow file for this run

name: Build
on:
- pull_request
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
go:
- "1.21"
- "1.22"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: install Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ matrix.go }}
- name: Build
run: make build
- name: Test
run: make test-unit