Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Adds CI for codeql

Adds CI for codeql #7

Workflow file for this run

name: 🎯 Pull Request
on:
pull_request:
jobs:
test:
name: Test
uses: ./.github/workflows/Test.yml
qa:
name: QA
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