Skip to content

Commit 2a1c420

Browse files
author
Raul Hidalgo Caballero
committed
.
1 parent 9bb2cc5 commit 2a1c420

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
version: 2
22
jobs:
3+
test-debug-netcoreapp2.0:
4+
working_directory: ~/GraphQL.Client/
5+
docker:
6+
- image: microsoft/dotnet:2-sdk
7+
steps:
8+
- checkout
9+
- run: dotnet test --configuration Debug --framework netcoreapp2.0 ./tests/GraphQL.Common.Tests/GraphQL.Common.Tests.csproj
10+
- run: dotnet test --configuration Debug --framework netcoreapp2.0 ./tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj
311
test-debug:
412
working_directory: ~/GraphQL.Client/
513
docker:
@@ -64,9 +72,11 @@ workflows:
6472
version: 2
6573
build-test-and-deploy:
6674
jobs:
75+
- test-debug-netcoreapp2.0
6776
- test-debug
6877
- test-release
6978
- deploy:
7079
requires:
80+
- test-debug-netcoreapp2.0
7181
- test-debug
7282
- test-release

0 commit comments

Comments
 (0)