[Internal] [Work in Progress] Fix tests that causes LabVIEW hang #433
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_call: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run_g_tests: | |
name: Run LabVIEW Tests | |
if: ${{ github.repository == 'ni/measurementlink-labview' || github.event.pull_request.head.repo.full_name == 'ni/measurementlink-labview' }} | |
uses: ./.github/workflows/run_g_tests.yml | |
run_vi_analyzer: | |
name: Run VI Analyzer | |
if: ${{ github.repository == 'ni/measurementlink-labview' || github.event.pull_request.head.repo.full_name == 'ni/measurementlink-labview' }} | |
uses: ./.github/workflows/run_vi_analyzer.yml | |
run_pr_commenter: | |
name: Run PR Commenter | |
if: ${{(contains(github.event.pull_request.body, 'RUN_G_DIFF_CHECK') || | |
contains(github.event.pull_request.body, '[x] <!--G_DIFF_CHECK-->')) && | |
(github.repository == 'ni/measurementlink-labview' || | |
github.event.pull_request.head.repo.full_name == 'ni/measurementlink-labview') }} | |
uses: ./.github/workflows/run_pr_commenter.yml |