From 5744faa6676628ae708a1931e76bb14548892df7 Mon Sep 17 00:00:00 2001 From: Denis-Cosmin Nutiu Date: Sat, 7 Mar 2020 17:16:25 +0200 Subject: [PATCH] Add circle ci support --- .circleci/config.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..e67017b --- /dev/null +++ b/.circleci/config.yml @@ -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 \ No newline at end of file