From 8396f5f5450fd8a3045187a873fd5fcd723a0da8 Mon Sep 17 00:00:00 2001 From: Ian Carey Date: Tue, 30 Oct 2018 16:48:02 +0000 Subject: [PATCH] Added circle config --- .circleci/config.yml | 14 ++++++++++++++ .gitignore | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..b002f70 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,14 @@ +version: 2 +jobs: + build: + docker: + - image: microsoft/dotnet:2-sdk + + working_directory: ~/repo + + steps: + - checkout + + - run: + name: NUnit Tests + command: dotnet test src/Intercom.Test \ No newline at end of file diff --git a/.gitignore b/.gitignore index 92f9691..9bb033c 100644 --- a/.gitignore +++ b/.gitignore @@ -236,6 +236,9 @@ FakesAssemblies/ # Visual Studio 6 workspace options file *.opt +# VSCode +.vscode + # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts