-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpre-commit.sh
executable file
·60 lines (48 loc) · 1.51 KB
/
pre-commit.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh
# To install as a Git pre-commit hook, run:
#
# > ln scripts/pre-commit.sh .git/hooks/pre-commit.sh
#
# POSIX compliant method for 'pipefail':
fail=$(mktemp)
# Check for unstaged changes in Haskell files
unstaged_haskell_files="$(git ls-files --exclude-standard --no-deleted --deduplicate --modified '*.hs' || echo > "$fail")"
if [ ! "${unstaged_haskell_files}" = "" ]; then
echo "Found unstaged Haskell files"
echo "${unstaged_haskell_files}"
fi
# Check for unstaged changes in Cabal files
unstaged_cabal_files="$(git ls-files --exclude-standard --no-deleted --deduplicate --modified '*.cabal' || echo > "$fail")"
if [ ! "${unstaged_cabal_files}" = "" ]; then
echo "Found unstaged Cabal files"
echo "${unstaged_cabal_files}"
fi
# Lint GitHub Actions workflows with actionlint
./scripts/lint-actionlint.sh || echo > "$fail"
echo
# Format Cabal files with cabal-fmt
./scripts/format-cabal-fmt.sh || echo > "$fail"
echo
# Format Haskell files with stylish-haskell
./scripts/format-stylish-haskell.sh || echo > "$fail"
echo
# Lint GitHub Actions workflows with actionlint
./scripts/lint-actionlint.sh || echo > "$fail"
echo
# Lint Cabal files with cabal
./scripts/lint-cabal.sh || echo > "$fail"
echo
# Lint Haskell files files with HLint
./scripts/lint-hlint.sh || echo > "$fail"
echo
# Test Haskell files with cabal-docspec
./scripts/test-cabal-docspec.sh || echo > "$fail"
echo
# Check whether or not any subcommand failed:
if [ -s "$fail" ]; then
rm "$fail"
exit 1
else
rm "$fail"
exit 0
fi