Compare commits

..

1 Commits

Author SHA1 Message Date
142b074a59 feat(ci): add all-required sentinel job
All checks were successful
Test / test (3.11) (pull_request) Successful in 1m51s
Test / test (3.13) (pull_request) Successful in 1m47s
Test / test (3.12) (pull_request) Successful in 1m52s
Test / all-required (pull_request) Successful in 5s
Adds a single CI / all-required status check that depends on the test
job. This enables branch protection to be configured with a single
required-status-check entry rather than enumerating each matrix variant.

Addresses: molecule-ai/molecule-sdk-python#11

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-13 04:25:20 +00:00

View File

@ -27,3 +27,17 @@ jobs:
- name: Lint - name: Lint
run: pip install ruff && ruff check molecule_agent/ molecule_plugin/ run: pip install ruff && ruff check molecule_agent/ molecule_plugin/
all-required:
name: all-required
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Check test result
run: |
result="${{ needs.test.result }}"
if [ "$result" != "success" ]; then
echo "Required job test failed (result: $result)"
exit 1
fi
echo "All required jobs passed"