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

Add CI for application tests #2

Add CI for application tests

Add CI for application tests #2

Workflow file for this run

name: 🎯 Pull Request
on:
pull_request:
jobs:
test:
name: Test
uses: ./.github/workflows/Test.yml
report-pr-status:
name: Report PR Status
runs-on: ubuntu-latest
needs: [ test ]
if: always()
steps:
- name: Check PR status
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1