From 9126076cd76e80162d9f282d351f15f85f80677d Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Tue, 18 May 2021 16:22:13 -0400 Subject: [PATCH] Limit CI jobs to 30 minutes --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fe2d72df..086e0347c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,8 @@ jobs: needs: discover_matrix name: ${{ matrix.name }} runs-on: '${{ matrix.os }}-latest' - + timeout-minutes: 30 + strategy: fail-fast: false matrix: ${{fromJson(needs.discover_matrix.outputs.matrix)}}