Skip to content

Test PR

Test PR #5

Workflow file for this run

name: Test PR
on:
pull_request_target:
workflow_call:
workflow_dispatch:
jobs:
test-protocol-with-repo-variables:
if: ${{ vars.USE_CUSTOM_VARIABLES == 'true' }}
runs-on: ubuntu-latest
steps:
- run: |
export PROTOCOL=${{vars.PROTOCOL}} && ./tests/setup_and_run.sh
test-protocol-with-env-variables:
if: ${{ vars.USE_CUSTOM_VARIABLES != 'true' }}
runs-on: ubuntu-latest
steps:
- run: |
source env.sh && ./tests/setup_and_run.sh