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 1140deb + 3b1cc5c commit 74c4d5cCopy full SHA for 74c4d5c
.circleci/config.yml
@@ -0,0 +1,19 @@
1
+version: 2
2
+workflows:
3
+ version: 2
4
+ test:
5
+ jobs:
6
+ - test-1.1
7
+jobs:
8
+ test-1.1:
9
+ docker:
10
+ - image: microsoft/dotnet:1.1-sdk
11
+ steps:
12
+ - run:
13
+ name: install packages
14
+ command: apt-get -q update && apt-get install -qy awscli
15
+ - checkout
16
+ - run: aws s3 cp s3://launchdarkly-pastebin/ci/dotnet/LaunchDarkly.EventSource.snk LaunchDarkly.EventSource.snk
17
+ - run: dotnet restore
18
+ - run: dotnet build src/LaunchDarkly.EventSource -f netstandard1.4
19
+ - run: dotnet test test/LaunchDarkly.EventSource.Tests/LaunchDarkly.EventSource.Tests.csproj -f netcoreapp1.1
circle.yml
0 commit comments