Skip to content

Add CI testing workflow #3

Add CI testing workflow

Add CI testing workflow #3

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
success:
name: Success
runs-on: ubuntu-latest
needs: [ test, qa ]
if: always()
steps:
- name: Check PR status
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1