From c31426b23a8080795905ec73c9e458a2447cb2f2 Mon Sep 17 00:00:00 2001 From: Aaron Batilo Date: Thu, 28 Dec 2023 17:09:18 -0700 Subject: [PATCH] ci: Create catch-all GHA job (#67) This will make it so that I can make the success of ci-all be the required step for branch protection rules. That way, if the combination of versions of Python and OS change, then I don't have to change the branch protection rules themselves. --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9580f8a..c518304 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,9 +25,15 @@ jobs: poetry-version: ${{ matrix.poetry-version }} - name: View poetry --help run: poetry --help + ci-all: + runs-on: ubuntu-latest + needs: [ci] + steps: + - run: | + echo "All matrix jobs have completed successfully!" release: if: github.event_name == 'push' - needs: ci + needs: ci-all runs-on: ubuntu-latest steps: - uses: actions/checkout@master