14 lines
221 B
Bash
Executable File
14 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Exit on any error
|
|
set -e
|
|
|
|
# Ensure no compile errors in all projects
|
|
find . -name *.csproj -exec dotnet build {} \;
|
|
|
|
# Execute Unit tests
|
|
cd tests/KubernetesClient.Tests
|
|
dotnet restore
|
|
dotnet test
|
|
|