Skip to content

Promote from BLAIS5-5161-b to main #109

Promote from BLAIS5-5161-b to main

Promote from BLAIS5-5161-b to main #109

Workflow file for this run

name: golangci-lint
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.26'
cache: false
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Run golangci-lint
run: golangci-lint run ./... --out-format=colored-line-number