-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (36 loc) · 1010 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:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/[email protected]
with:
version: v1.55
# TODO(lubedacht) include later
# yamllint:
# name: yamllint
# runs-on: ubuntu-latest
# steps:
# - uses: actions/[email protected]
# - uses: ibiqlik/action-yamllint@v3
# with:
# format: github
actionlint:
name: actionlint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Download actionlint
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
shell: bash
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color
shell: bash