Skip to content

feat(actions): add linter action #2

feat(actions): add linter action

feat(actions): add linter action #2

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
golangci:
strategy:
matrix:
# test one Linux Distro, MacOS, Windows
os: [ ubuntu-latest, macos-latest, windows-latest ]
name: lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.0