-
Notifications
You must be signed in to change notification settings - Fork 20
37 lines (37 loc) · 1.12 KB
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: lint
on: [pull_request, workflow_dispatch]
jobs:
lua:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check formatting
uses: JohnnyMorganz/stylua-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --check .
go:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Run gci (imports)
run: |
go install github.com/daixiang0/gci@latest
gci diff --skip-generated -s standard -s default --skip-vendor .
working-directory: ./tests/go
- name: Run golines (formatting)
run: |
go install mvdan.cc/gofumpt@latest
go install github.com/segmentio/golines@latest
golines --base-formatter=gofumpt --ignore-generated --tab-len=1 --max-len=120 .
working-directory: ./tests/go
- name: Go vet (vulnerabilities)
run: go vet ./...
working-directory: ./tests/go