Skip to content

Adds spectral to QA workflow #85

Adds spectral to QA workflow

Adds spectral to QA workflow #85

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
qa:
name: QA
needs: build
uses: ./.github/workflows/QA.yml
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') }}
run: exit 1