Add circle ci config file
This commit is contained in:
parent
6b75f3a7e7
commit
d87037918c
1 changed files with 27 additions and 0 deletions
27
.circleci/config.yml
Normal file
27
.circleci/config.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
version: 2.1
|
||||||
|
|
||||||
|
orbs:
|
||||||
|
windows: circleci/windows@2.2.0
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
description: Setup and run application tests
|
||||||
|
executor:
|
||||||
|
name: windows/default
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: "Install project dependencies"
|
||||||
|
command: dotnet.exe restore
|
||||||
|
- run:
|
||||||
|
name: "Run Application Tests"
|
||||||
|
command: dotnet.exe test -v n --results-directory:test_coverage --collect:"Code Coverage"
|
||||||
|
- run:
|
||||||
|
name: "Print Working Directory"
|
||||||
|
command: pwd
|
||||||
|
- store_artifacts:
|
||||||
|
path: C:\Users\circleci\project\test_coverage
|
||||||
|
workflows:
|
||||||
|
test_app:
|
||||||
|
jobs:
|
||||||
|
- test
|
Loading…
Reference in a new issue