-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 980 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
name: Lint
on: pull_request
jobs:
dockerfile:
name: dockerfile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run hadolint
uses: hadolint/[email protected]
with:
trusted-registries: docker.io
markdownlint:
name: markdown
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run markdownlint
uses: DavidAnson/markdownlint-cli2-action@v18
golangci:
name: go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: arnested/go-version-action@v1
id: go-version
- name: Setup Go ${{ steps.go-version.outputs.minimal }}
uses: WillAbides/[email protected]
with:
go-version: ${{ steps.go-version.outputs.minimal }}
- run: go version
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
only-new-issues: true