-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (39 loc) · 1.4 KB
/
lint.yml
File metadata and controls
49 lines (39 loc) · 1.4 KB
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
---
# -------------------------------------------------------------------------------------------------
# Job Name
# -------------------------------------------------------------------------------------------------
name: lint
# -------------------------------------------------------------------------------------------------
# When to run
# -------------------------------------------------------------------------------------------------
on:
# Runs on Pull Requests
pull_request:
# -------------------------------------------------------------------------------------------------
# What to run
# -------------------------------------------------------------------------------------------------
jobs:
lint:
uses: devilbox/github-actions/.github/workflows/lint-generic.yml@master
lint_custom:
runs-on: ubuntu-latest
steps:
- name: "[SETUP] Checkout repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint GitHub Actions
uses: cytopia/shell-command-retry-action@v0.1.2
with:
command: |
make lint-actions
- name: Lint GitHub CODEOWNERS
uses: cytopia/shell-command-retry-action@v0.1.2
with:
command: |
make lint-codeowners
- name: Lint README.md
uses: cytopia/shell-command-retry-action@v0.1.2
with:
command: |
make lint-readme