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 7c9b932 commit 532dce7Copy full SHA for 532dce7
.github/workflows/hlint.yml
@@ -0,0 +1,17 @@
1
+name: "Checking with HLint"
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - '**'
7
8
+jobs:
9
+ build10:
10
+ name: "HLint check"
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
15
+ - name: "HLint via ./fmt.sh"
16
+ run: |
17
+ ./fmt.sh
.github/workflows/test.yml
@@ -154,11 +154,7 @@ jobs:
154
${{ env.cache-name }}-${{ runner.os }}-${{ matrix.ghc }}-
155
${{ env.cache-name }}-${{ runner.os }}-
156
157
- - run: cabal update
158
-
159
- - name: "HLint via ./fmt.sh"
160
- run: |
161
- ./fmt.sh
+ - run: cabal v2-update
162
163
# repeating builds to workaround segfaults in windows and ghc-8.8.4
164
- name: Build
0 commit comments