Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit e150611

Browse files
committed
rewrite conditional test execution
1 parent d6d2ac1 commit e150611

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/autotest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ on:
77

88
jobs:
99
test-protocol-with-repo-variables:
10-
if: vars.use_custom_variables
10+
if: ${{ vars.USE_CUSTOM_VARIABLES == 'true' }}
1111
runs-on: ubuntu-latest
1212
steps:
1313
- run: |
1414
export PROTOCOL=${{vars.PROTOCOL}} && ./tests/setup_and_run.sh
1515
test-protocol-with-env-variables:
16-
if: ! vars.use_custom_variables
16+
if: ${{ vars.USE_CUSTOM_VARIABLES != 'true' }}
1717
runs-on: ubuntu-latest
1818
steps:
1919
- run: |

0 commit comments

Comments
 (0)