-
Notifications
You must be signed in to change notification settings - Fork 71
43 lines (35 loc) · 952 Bytes
/
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
38
39
40
41
42
43
name: lint
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
workflow_dispatch: {}
pull_request:
branches:
- master
- release-**-**
paths-ignore: ['docs/**', '**.md', '**.mdx', '**.png', '**.jpg']
env:
# Common versions
GO_VERSION: '1.22'
jobs:
lint:
name: "Lint & Format"
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Format
run: make fmt
- name: golangci-lint
run: make lint