Skip to content

chore(CI): clean up gha and unused files #1

chore(CI): clean up gha and unused files

chore(CI): clean up gha and unused files #1

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
jobs:
call-integration-tests:
name: Run Integration Tests
uses: ./.github/workflows/ci_integration.yml
call-static-analysis:
name: Run Static Analysis
uses: ./.github/workflows/ci_static-analysis.yaml
call-tests:
name: Run Tests
uses: ./.github/workflows/ci_tests.yaml
pr-ci-all-required:
if: always()
needs:
- call-integration-tests
- call-static-analysis
- call-tests
runs-on: ubuntu-22.04
steps:
- name: Verify all required jobs passed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}