blob: 333878c1ca1827129e2d747de38c7bb5f9c4b74d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
job build:
shell:
- cabal build -fci
- 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
|