Skip to content

test another protocol #9

test another protocol

test another protocol #9

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:
- name: Cloning repository
uses: actions/checkout@v4
- name: Test evaluation
run: |
chmod -R +x .
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:
- name: Cloning repository
uses: actions/checkout@v4
- name: Test evaluation
run: |
chmod -R +x .
source env.sh && ./tests/setup_and_run.sh