Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/CI_Execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,24 @@ on:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
quality-analysis:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
Comment thread
mrdailey99 marked this conversation as resolved.
permissions:
contents: read
pull-requests: write
steps:
Comment thread
mrdailey99 marked this conversation as resolved.
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: mrdailey99/QualityOrchestrator@v1.0.0
Comment thread
mrdailey99 marked this conversation as resolved.
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test-dir: 'test'
framework: 'auto'
generate-stubs: 'false'
fail-on-high: 'false'

provardx-ci-execution:
strategy:
matrix:
Expand Down