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 c0564af commit 92f054fCopy full SHA for 92f054f
.github/workflows/checks.yml
@@ -56,15 +56,7 @@ jobs:
56
- uses: actions/checkout@v4
57
58
- name: Cabal check
59
- run: |
60
- for x in $(find . -name '*.cabal' | grep -vE 'dist-newstyle|asserts\.cabal' | cut -c 3-); do
61
- (
62
- d=$(dirname $x)
63
- echo "== $d =="
64
- cd $d
65
- cabal check
66
- )
67
- done
+ run: ./scripts/ci/check-cabal-files.sh
68
69
check-release-badges:
70
scripts/ci/check-cabal-files.sh
@@ -1,5 +1,7 @@
1
#!/usr/bin/env bash
2
3
+set -Eeuo pipefail
4
+
5
for x in $(find . -name '*.cabal' | grep -vE 'dist-newstyle|asserts\.cabal' | cut -c 3-); do
6
(
7
d=$(dirname $x)
0 commit comments