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-04-03 12:35:32 +08:00
|
|
|
find . -name *.csproj -exec dotnet build {} \;
|
2017-11-16 01:34:02 +08:00
|
|
|
|
2017-07-16 22:09:26 +02:00
|
|
|
# Execute Unit tests
|
|
|
|
|
cd tests
|
2018-04-03 12:35:32 +08:00
|
|
|
dotnet restore
|
|
|
|
|
dotnet test
|