-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1010 Bytes
/
lint.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Lint
on:
workflow_dispatch:
pull_request:
branches: [ main ]
push:
branches:
- main
paths-ignore:
- '*.http'
- 'README.md'
- 'docs/**'
- '.github/**'
- '.taskfiles/**'
- 'scripts/**'
- 'LICENSE'
- 'sqlc.yaml'
- 'Taskfile.yaml'
- '.gitignore'
- 'project.toml'
- '.gosec.config.json'
- '.editorconfig'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3.5.3
- name: Set up Go
uses: actions/setup-go@v4.1.0
with:
go-version: '1.20'
- name: Install Task
uses: arduino/setup-task@v1.0.3
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Linter
run: task bootstrap_tasks:install:golangci-lint
- name: Lint
run: task lint