From 978b0a43a08d717f4982c89312a591dd971ac0a8 Mon Sep 17 00:00:00 2001 From: Tom Gardham-Pallister Date: Sat, 17 Mar 2018 18:09:47 +0000 Subject: [PATCH] #52 remove circle ci script --- .circleci/config.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8abd6ffd..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: 2 -jobs: - build: - working_directory: /temp - docker: - - image: microsoft/dotnet:sdk - environment: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 - DOTNET_CLI_TELEMETRY_OPTOUT: 1 - steps: - - checkout - - run: dotnet restore - - run: dotnet build - - run: dotnet test ./test/Ocelot.UnitTests/Ocelot.UnitTests.csproj - - run: dotnet test ./test/Ocelot.AcceptanceTests/Ocelot.AcceptanceTests.csproj - - run: dotnet test ./test/Ocelot.IntegrationTests/Ocelot.IntegrationTests.csproj -