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 40dee23
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: |
status=0
for i in */*.cabal; do
( cd "${i%/*}" && cabal check ) || break
( cd "${i%/*}" && echo "[${i%/*}]" && cabal check ) || status=1
done
echo "[status=$status]"
exit $status
- name: documentation
run: cabal haddock all

0 comments on commit 40dee23

Please sign in to comment.