From 65c36f83cd31f9953e83213683a54f5da5324a65 Mon Sep 17 00:00:00 2001 From: Tony Bark Date: Tue, 28 Nov 2023 09:53:08 -0500 Subject: [PATCH] Test workflow now requires build to succeed --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ef8763f..4695545 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,6 +27,7 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore test: + needs: build timeout-minutes: 15 continue-on-error: true runs-on: "ubuntu-latest"