2024-12-07 00:50:59 +07:00
|
|
|
on:
|
|
|
|
pull_request:
|
2024-12-07 01:37:27 +07:00
|
|
|
types: [opened, reopened, closed, synchronize]
|
2024-12-07 00:50:59 +07:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- v3
|
|
|
|
- v4
|
|
|
|
|
|
|
|
jobs:
|
2024-12-07 01:37:27 +07:00
|
|
|
if_merged:
|
2024-12-07 01:59:15 +07:00
|
|
|
name: lint
|
2024-12-07 01:57:57 +07:00
|
|
|
if: ${{ github.event.pull_request.state != 'closed' || github.event.pull_request.merged == true }}
|
2024-12-07 00:50:59 +07:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: setup-go
|
|
|
|
uses: actions/setup-go@v5
|
|
|
|
with:
|
|
|
|
go-version: 'stable'
|
|
|
|
- name: checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: deps
|
|
|
|
run: go get -v -d ./...
|
|
|
|
- name: lint
|
|
|
|
uses: https://github.com/golangci/golangci-lint-action@v6
|
|
|
|
with:
|
|
|
|
version: v1.62.2
|