Skip to content

Commit abf67c3

Browse files
committed
Added Travis-CI Job
1 parent e89ef57 commit abf67c3

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env bash
2+
3+
# Exit on any error
4+
set -e
5+
6+
# Execute Unit tests
7+
cd tests
8+
dotnet restore
9+
dotnet xunit

0 commit comments

Comments
 (0)