Bump coverage from 7.6.0 to 7.6.1 in the python group #77
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🎯 Pull Request | ||
on: | ||
pull_request: | ||
jobs: | ||
build: | ||
name: Build | ||
uses: ./.github/workflows/Build.yml | ||
test: | ||
name: Test | ||
needs: build | ||
uses: ./.github/workflows/Test.yml | ||
secrets: inherit | ||
qa: | ||
Check failure on line 17 in .github/workflows/PullRequest.yml GitHub Actions / 🎯 Pull RequestInvalid workflow file
|
||
name: QA | ||
needs: build | ||
uses: ./.github/workflows/QA.yml | ||
secrets: inherit | ||
report-pr-status: | ||
name: Report PR Status | ||
runs-on: ubuntu-latest | ||
needs: [ test, qa ] | ||
if: always() | ||
steps: | ||
- name: Check PR status | ||
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') }} | ||
run: exit 1 |