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.
1 parent e89ef57 commit abf67c3Copy full SHA for abf67c3
.travis.yml
@@ -0,0 +1,11 @@
1
+language: csharp
2
+solution: tests/tests.csproj
3
+sudo: required
4
+matrix:
5
+ include:
6
+ - dotnet: 1.0.4
7
+ mono: none
8
+ dist: trusty
9
+
10
+script:
11
+ - ./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