Skip to content

feat(actions): add linter action #1

feat(actions): add linter action

feat(actions): add linter action #1

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 latest stable and current from go.mod
go: [ stable, 1.24.1 ]
# 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: ${{ matrix.go }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.0