-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 1.49 KB
/
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
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Lint
on:
workflow_dispatch: {}
pull_request: {}
jobs:
go:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-go-lint.yaml@09f31ab6340ce5651dc6c28512a82de6b2415fb9 # v3.8.2
secrets: inherit
with:
# renovate: depName=go datasource=golang-version
go-version: 1.24.1
# renovate: depName=golangci/golangci-lint datasource=github-tags
golangci-lint-version: v1.64.6
bash:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-shellcheck.yaml@09f31ab6340ce5651dc6c28512a82de6b2415fb9 # v3.8.2
secrets: inherit
commits:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-commitlint.yaml@09f31ab6340ce5651dc6c28512a82de6b2415fb9 # v3.8.2
secrets: inherit
with: { config-file: ./.github/configs/commitlint.config.mjs }
github-actions:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-actionlint.yaml@09f31ab6340ce5651dc6c28512a82de6b2415fb9 # v3.8.2
secrets: inherit
markdown:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-markdownlint.yaml@09f31ab6340ce5651dc6c28512a82de6b2415fb9 # v3.8.2
secrets: inherit
with: { config-file: .github/configs/.markdownlint.yaml }
yaml:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-yamllint.yaml@09f31ab6340ce5651dc6c28512a82de6b2415fb9 # v3.8.2
secrets: inherit
with: { config-file: .github/configs/yamllint.yaml }