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