Skip to content

Commit ede0c29

Browse files
committed
circleci added
circleci build config added
1 parent 865e1e5 commit ede0c29

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.circleci/config.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
- run:
12+
name: Restore
13+
command: dotnet restore ./Supermarket.Core/Supermarket.Core.csproj
14+
- run:
15+
name: Build
16+
command: dotnet build ./Supermarket.Core/Supermarket.Core.csproj
17+
- run:
18+
name: Restore
19+
command: dotnet restore ./Supermarket/Supermarket.csproj
20+
- run:
21+
name: Build
22+
command: dotnet build ./Supermarket/Supermarket.csproj
23+
- run:
24+
name: Test
25+
command: dotnet test ./Supermarket.UnitTests/Supermarket.UnitTests.csproj

0 commit comments

Comments
 (0)