sing-box/.github/workflows/lint.yml

37 lines
754 B
YAML
Raw Normal View History

2022-07-24 19:44:33 +08:00
name: Lint
on:
push:
branches:
2023-10-30 12:36:03 +08:00
- stable-next
2022-12-03 17:03:04 +08:00
- main-next
- dev-next
2022-07-24 19:44:33 +08:00
paths-ignore:
- '**.md'
- '.github/**'
2023-02-09 22:07:00 +08:00
- '!.github/workflows/lint.yml'
2022-07-24 19:44:33 +08:00
pull_request:
branches:
2023-10-30 12:36:03 +08:00
- stable-next
2022-12-03 17:03:04 +08:00
- main-next
- dev-next
2022-07-24 19:44:33 +08:00
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
2022-07-24 19:44:33 +08:00
with:
fetch-depth: 0
2024-01-24 12:13:12 +08:00
- name: Setup Go
2024-02-10 03:03:57 +08:00
uses: actions/setup-go@v5
2024-01-24 12:13:12 +08:00
with:
2024-08-20 21:33:31 +08:00
go-version: ^1.23
2022-07-24 19:44:33 +08:00
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
2022-07-24 19:44:33 +08:00
with:
2023-10-30 12:36:03 +08:00
version: latest
args: --timeout=30m
install-mode: binary