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 865e1e5 commit ede0c29Copy full SHA for ede0c29
.circleci/config.yml
@@ -0,0 +1,25 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ docker:
5
+ - image: mcr.microsoft.com/dotnet/core/sdk:2.2
6
+ steps:
7
+ - checkout
8
+ - run:
9
+ name: Find
10
+ command: find .
11
12
+ name: Restore
13
+ command: dotnet restore ./Supermarket.Core/Supermarket.Core.csproj
14
15
+ name: Build
16
+ command: dotnet build ./Supermarket.Core/Supermarket.Core.csproj
17
18
19
+ command: dotnet restore ./Supermarket/Supermarket.csproj
20
21
22
+ command: dotnet build ./Supermarket/Supermarket.csproj
23
24
+ name: Test
25
+ command: dotnet test ./Supermarket.UnitTests/Supermarket.UnitTests.csproj
0 commit comments