Clash.Meta/.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
uses: actions/setup-go@v3
2022-03-06 21:48:25 +08:00
with:
check-latest: true
go-version: '1.18'
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