Skip to content

Commit 9bb2cc5

Browse files
author
Raul Hidalgo Caballero
committed
.
1 parent 266b6bb commit 9bb2cc5

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.circleci/config.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
version: 2
22
jobs:
3-
netcore1.0:
3+
test-debug:
44
working_directory: ~/GraphQL.Client/
55
docker:
6-
- image: microsoft/dotnet:1-sdk
6+
- image: microsoft/dotnet:2-sdk
77
steps:
88
- checkout
99

10-
# Test
11-
- run: dotnet restore
12-
- run: dotnet test --framework netcoreapp1.0 ./tests/GraphQL.Common.Tests/GraphQL.Common.Tests.csproj
13-
- run: dotnet test --framework netcoreapp1.0 ./tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj
10+
# Common
11+
- run: dotnet test --configuration Debug --framework netcoreapp2.0 ./tests/GraphQL.Common.Tests/GraphQL.Common.Tests.csproj
12+
- run: dotnet test --configuration Debug --framework netcoreapp2.1 ./tests/GraphQL.Common.Tests/GraphQL.Common.Tests.csproj
13+
14+
# Client
15+
- run: dotnet test --configuration Debug --framework netcoreapp2.0 ./tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj
16+
- run: dotnet test --configuration Debug --framework netcoreapp2.1 ./tests/GraphQL.Client.Tests/GraphQL.Client.Tests.csproj
1417

1518
test-release:
1619
working_directory: ~/GraphQL.Client/
@@ -61,9 +64,9 @@ workflows:
6164
version: 2
6265
build-test-and-deploy:
6366
jobs:
64-
- netcore1.0
67+
- test-debug
6568
- test-release
6669
- deploy:
6770
requires:
68-
- netcore1.0
71+
- test-debug
6972
- test-release

0 commit comments

Comments
 (0)