048a25f0f2
* ci(release): drop unsupported windows/arm targets
23 lines
420 B
YAML
23 lines
420 B
YAML
name: lint
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- v2
|
|
|
|
jobs:
|
|
golangci:
|
|
name: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: "1.26"
|
|
- name: Run golangci-lint
|
|
uses: golangci/golangci-lint-action@v9
|
|
with:
|
|
version: v2.8.0
|