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