Add tests to gui

This commit is contained in:
Gregory Casamento 2021-07-14 04:41:27 -04:00
parent 44b58c33b6
commit 65e243ef65
2 changed files with 12 additions and 0 deletions

8
.github/scripts/test.sh vendored Executable file
View file

@ -0,0 +1,8 @@
#! /usr/bin/env sh
set -ex
echo "Running unit tests"
. $HOME/staging/share/GNUstep/Makefiles/GNUstep.sh;
make check || (cat Tests/tests.log && false);

View file

@ -23,3 +23,7 @@ jobs:
# Runs a single command using the runners shell
- name: Build source
run: ./.github/scripts/build.sh
# Runs a single command using the runners shell
- name: Build source
run: ./.github/scripts/test.sh