Skip to content

Commit

Permalink
[github] arm "cabal check" workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mauke committed Oct 14, 2024
1 parent 6304275 commit c686b9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,12 @@ jobs:
- name: check
shell: bash
run: |
ok=x
for i in */*.cabal; do
( cd "${i%/*}" && cabal check ) || break
( cd "${i%/*}" && echo "[${i%/*}]" && cabal check ) || ok=
done
echo "[ok=$ok]"
[ "$ok" ] || exit 1
- name: documentation
run: cabal haddock all

0 comments on commit c686b9d

Please sign in to comment.