-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (51 loc) · 1.56 KB
/
ci-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
53
54
# NOTE: This name appears in GitHub's Checks API and in workflow's status badge.
name: ci-lint
# Trigger the workflow when:
on:
# A push occurs to one of the matched branches.
push:
branches:
- main
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- main
# Cancel in-progress jobs on same branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-go:
name: lint-go
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
# Fetch all history so gitlint can check the relevant commits.
fetch-depth: '0'
- name: Set up Python 3
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Autogenerate Go code
run: |
go version
go install github.com/deepmap/oapi-codegen/cmd/[email protected]
make codegen-go
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Lint Go
uses: golangci/golangci-lint-action@v3
with:
# Update README.md instructions when bumping this.
version: v1.55.1
# Always run this step so that all linting errors can be seen at once.
if: always()