We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e95a1d6 commit a0153b6Copy full SHA for a0153b6
.github/workflows/hlint.yml
@@ -0,0 +1,27 @@
1
+name: HLint
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - '**/site.hs'
7
+ branches:
8
+ - main
9
+ pull_request:
10
11
12
+ types:
13
+ - opened
14
+ - synchronize
15
+ - reopened
16
17
+jobs:
18
+ hlint:
19
+ name: HLint
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - name: Check site.hs with hlint
24
+ uses: haskell-actions/hlint-scan@v1
25
+ with:
26
+ path: |
27
+ **/site.hs
0 commit comments