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 ae241e7 commit 5ddb224Copy full SHA for 5ddb224
.github/workflows/hlint.yml
@@ -0,0 +1,27 @@
1
+name: hlint
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
7
+jobs:
8
+ style:
9
+ name: hlint
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ with:
15
+ submodules: true
16
17
+ - uses: haskell/actions/hlint-setup@v2
18
+ name: Set up HLint
19
20
+ version: "3.4"
21
22
+ - name: hlint
23
+ run: |
24
+ set -ex
25
+ hlint src/
26
+ hlint src/ --cpp-define=WINDOWS=1
27
+ hlint test/ --cpp-simple
0 commit comments