blob: 68e6959ef3117cfe3065047e4ca312d4ba882d1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
job build:
shell: |
cabal build --ghc-options='-Werror -Wno-error=unused-imports'
mkdir build
cp $(cabal list-bin erebos) build/erebos
artifact erebos:
path: build/erebos
job test:
uses:
- build.erebos
shell:
- EREBOS_TEST_TOOL='build/erebos test' erebos-tester -v
|