We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c3561e commit cb5733fCopy full SHA for cb5733f
1 file changed
.github/workflows/hlint.yml
@@ -0,0 +1,20 @@
1
+name: HLint
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ hlint:
11
+ name: HLint
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ security-events: write
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Lint Haskell files with hlint
18
+ uses: haskell-actions/hlint-scan@v1
19
+ with:
20
+ hints: .hlint.yml
0 commit comments