Skip to content

Commit 3dcd056

Browse files
committed
CI: GitHyb: add HLint
1 parent 885b714 commit 3dcd056

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/HLint.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Checking code"
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build10:
11+
name: "HLint"
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: 'Installing'
17+
uses: rwe/actions-hlint-setup@v1
18+
with:
19+
version: '3.3.1'
20+
21+
- name: 'Checking code'
22+
uses: rwe/actions-hlint-run@v1
23+
with:
24+
path: .
25+
fail-on: warning

0 commit comments

Comments
 (0)