9 lines
106 B
Bash
9 lines
106 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
# Exit on any error
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Execute Unit tests
|
||
|
|
cd tests
|
||
|
|
dotnet restore
|
||
|
|
dotnet xunit
|