71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
name: lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- dev
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.github/**'
|
|
- '!.github/workflows/lint.yml'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
build:
|
|
name: Lint ${{ matrix.goos }}/${{ matrix.goarch }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- goos: windows
|
|
goarch: amd64
|
|
- goos: windows
|
|
goarch: '386'
|
|
- goos: windows
|
|
goarch: arm64
|
|
- goos: linux
|
|
goarch: amd64
|
|
- goos: linux
|
|
goarch: arm64
|
|
- goos: linux
|
|
goarch: arm
|
|
- goos: linux
|
|
goarch: '386'
|
|
- goos: darwin
|
|
goarch: amd64
|
|
- goos: darwin
|
|
goarch: arm64
|
|
- goos: android
|
|
goarch: arm64
|
|
- goos: freebsd
|
|
goarch: amd64
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ^1.25
|
|
- name: Cache go module
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/go/pkg/mod
|
|
key: go-${{ hashFiles('**/go.sum') }}
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@v8
|
|
env:
|
|
GOOS: ${{ matrix.goos }}
|
|
GOARCH: ${{ matrix.goarch }}
|
|
with:
|
|
version: latest
|
|
args: --timeout=30m
|
|
install-mode: binary
|
|
verify: false
|