Skip to content

Create go-test.yml

Create go-test.yml #2

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- main
- v*
pull_request:
permissions:
contents: read
pull-requests: read
checks: write
jobs:
golangci:
strategy:
matrix:
go: [stable]
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@v6
with:
version: v1.58
only-new-issues: true