Skip to content

Commit 714ede3

Browse files
committed
[github] arm "cabal check" workflow
1 parent 6304275 commit 714ede3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/haskell.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,11 @@ jobs:
7878
- name: check
7979
shell: bash
8080
run: |
81+
status=0
8182
for i in */*.cabal; do
82-
( cd "${i%/*}" && cabal check ) || break
83+
( cd "${i%/*}" && echo "[${i%/*}]" && cabal check ) || status=1
8384
done
85+
exit $status
8486
8587
- name: documentation
8688
run: cabal haddock all

0 commit comments

Comments
 (0)