Skip to content

chore(deps): pin golangci/golangci-lint-action action to 1e7e51e #3776

chore(deps): pin golangci/golangci-lint-action action to 1e7e51e

chore(deps): pin golangci/golangci-lint-action action to 1e7e51e #3776

Workflow file for this run

name: Go-test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./...
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
with:
version: v2.7.2