builds: add unit testing

This commit is contained in:
Jeremy Baxter 2024-08-08 16:27:38 +12:00
parent 9e350aea93
commit 00b9c836b3
2 changed files with 8 additions and 0 deletions

View file

@ -21,5 +21,9 @@ tasks:
- install: | - install: |
nix profile install ./esv nix profile install ./esv
- test: | - test: |
cd esv
./configure -t
make clean all
./esv
# very basic test :) # very basic test :)
esv Matthew 5-7 >/dev/null esv Matthew 5-7 >/dev/null

View file

@ -13,5 +13,9 @@ tasks:
- install: | - install: |
doas make -C esv install doas make -C esv install
- test: | - test: |
cd esv
./configure -t
make clean all
./esv
# very basic test :) # very basic test :)
esv Matthew 5-7 >/dev/null esv Matthew 5-7 >/dev/null