Skip to content

Commit dc97164

Browse files
tg123brendandburns
authored andcommitted
revert changes to ci.sh in c0a42ad (#125)
1 parent d20e259 commit dc97164

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

ci.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,9 @@
44
set -e
55

66
# Ensure no compile errors in all projects
7-
dotnet restore
8-
dotnet build --no-restore
7+
find . -name *.csproj -exec dotnet build {} \;
98

109
# Execute Unit tests
1110
cd tests
12-
dotnet test --no-restore --no-build
13-
if [[ $? != 0 ]]; then
14-
exit 1
15-
fi
11+
dotnet restore
12+
dotnet test

0 commit comments

Comments
 (0)