2017-07-16 22:09:26 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
# Exit on any error
|
|
|
|
|
set -e
|
|
|
|
|
|
2017-11-16 01:34:02 +08:00
|
|
|
# Ensure no compile errors in all projects
|
2018-03-20 16:03:28 +11:00
|
|
|
dotnet restore
|
|
|
|
|
dotnet build --no-restore
|
2017-11-16 01:34:02 +08:00
|
|
|
|
2017-07-16 22:09:26 +02:00
|
|
|
# Execute Unit tests
|
|
|
|
|
cd tests
|
2018-03-20 16:03:28 +11:00
|
|
|
dotnet test --no-restore --no-build
|
|
|
|
|
if [[ $? != 0 ]]; then
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|