Skip to content

Bump golangci/golangci-lint-action from 9.1.0 to 9.2.0 (#695) #946

Bump golangci/golangci-lint-action from 9.1.0 to 9.2.0 (#695)

Bump golangci/golangci-lint-action from 9.1.0 to 9.2.0 (#695) #946

Workflow file for this run

---
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go: [1.22.8]
name: go ${{ matrix.go }}
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: ${{ matrix.go }}
check-latest: true
cache: true
- name: Tests
run: make test
- name: benchmarks
run: make bench
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: 1.22
check-latest: true
cache: true
- name: E2E tests
run: make test-e2e
- name: Build
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a
with:
distribution: goreleaser
version: v1.10.3
args: build --snapshot --rm-dist --skip-post-hooks --skip-validate --single-target
env:
GOOS: linux