Skip to content

Commit

Permalink
ci: Create catch-all GHA job (#67)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
abatilo committed Dec 29, 2023
1 parent a5643c6 commit c31426b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -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
Expand Down

0 comments on commit c31426b

Please sign in to comment.