Files
csharp/ci.sh

14 lines
221 B
Bash
Raw Normal View History

2017-07-16 22:09:26 +02:00
#!/usr/bin/env bash
# Exit on any error
set -e
# Ensure no compile errors in all projects
find . -name *.csproj -exec dotnet build {} \;
2017-07-16 22:09:26 +02:00
# Execute Unit tests
cd tests/KubernetesClient.Tests
dotnet restore
dotnet test