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 -