clash/.github/workflows/linter.yml

23 lines
691 B
YAML
Raw Normal View History

2021-10-11 12:08:18 +00:00
name: Linter
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
2022-03-06 13:48:25 +00:00
- uses: actions/checkout@v3
- name: Get latest go version
id: version
run: |
echo ::set-output name=go_version::$(curl -s https://raw.githubusercontent.com/actions/go-versions/main/versions-manifest.json | grep -oE '"version": "[0-9]{1}.[0-9]{1,}(.[0-9]{1,})?"' | head -1 | cut -d':' -f2 | sed 's/ //g; s/"//g')
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ steps.version.outputs.go_version }}
2021-10-11 12:08:18 +00:00
- name: golangci-lint
2022-03-06 13:48:25 +00:00
uses: golangci/golangci-lint-action@v3
2021-10-11 12:08:18 +00:00
with:
version: latest