blob: 7669a869df33ee49486a52ba20a71f965e12fc0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
# setup
cabal update
# doc
cabal haddock --enable-documentation --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc
# lint
cabal install hlint --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc --overwrite-policy=always "--constraint=hlint ==3.5"
cabal exec hlint -- src tests
# test
cabal build graphql-test --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc
cabal test --test-show-details=direct --with-compiler=/srv/httpd/server/ghcup/9.2/bin/ghc
|