clash/.github/workflows/linter.yml

19 lines
370 B
YAML
Raw Normal View History

2021-10-11 20:08:18 +08:00
name: Linter
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
2022-03-06 21:48:25 +08:00
- uses: actions/checkout@v3
- name: Setup Go
2023-03-18 19:57:31 +08:00
uses: actions/setup-go@v4
2022-03-06 21:48:25 +08:00
with:
check-latest: true
2023-02-16 21:43:40 +08:00
go-version: '1.20'
2022-03-06 21:48:25 +08:00
2021-10-11 20:08:18 +08:00
- name: golangci-lint
2022-03-06 21:48:25 +08:00
uses: golangci/golangci-lint-action@v3
2021-10-11 20:08:18 +08:00
with:
2022-08-05 10:52:36 +08:00
version: latest