Skip to content

Bump coverage from 7.6.0 to 7.6.1 in the python group #77

Bump coverage from 7.6.0 to 7.6.1 in the python group

Bump coverage from 7.6.0 to 7.6.1 in the python group #77

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / 🎯 Pull Request

Invalid workflow file

The workflow is not valid. .github/workflows/PullRequest.yml (Line: 17, Col: 3): Error calling workflow 'Better-HPC/keystone-python-client/.github/workflows/QA.yml@1fa6802d0f77340024f939c828e9dff14de32550'. The nested job 'codeql' is requesting 'actions: read, security-events: write', but is only allowed 'actions: none, security-events: none'.
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