Skip to content

Commit d0040d3

Browse files
committed
Add linter
1 parent 49808df commit d0040d3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/lint-generic.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Lint
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
8+
# -----------------------------------------------------------------------------------------------
9+
# JOB (1/1): Lint
10+
# -----------------------------------------------------------------------------------------------
11+
lint:
12+
name: lint
13+
runs-on: ubuntu-latest
14+
steps:
15+
16+
- name: "[SETUP] Checkout repository"
17+
uses: actions/checkout@v2
18+
with:
19+
fetch-depth: 0
20+
21+
- name: Lint
22+
uses: cytopia/shell-command-retry-action@v0.1.2
23+
with:
24+
command: |
25+
make lint

0 commit comments

Comments
 (0)