We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f0d57cc + 90516bf commit 07acafcCopy full SHA for 07acafc
.travis.yml
@@ -0,0 +1,10 @@
1
+language: csharp
2
+sudo: required
3
+matrix:
4
+ include:
5
+ - dotnet: 1.0.4
6
+ mono: none
7
+ dist: trusty
8
+
9
+script:
10
+ - ./ci.sh
ci.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+# Exit on any error
+set -e
+# Execute Unit tests
+cd tests
+dotnet restore
+dotnet xunit
0 commit comments