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

Commit 225459d

Browse files
committed
missing repo checkout
1 parent 1dafaee commit 225459d

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/autotest.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,17 @@ jobs:
1010
if: ${{ vars.USE_CUSTOM_VARIABLES == 'true' }}
1111
runs-on: ubuntu-latest
1212
steps:
13-
- run: |
13+
- name: Cloning repository
14+
uses: actions/checkout@v4
15+
- name: Test evaluation
16+
run: |
1417
export PROTOCOL=${{vars.PROTOCOL}} && ./tests/setup_and_run.sh
1518
test-protocol-with-env-variables:
1619
if: ${{ vars.USE_CUSTOM_VARIABLES != 'true' }}
1720
runs-on: ubuntu-latest
1821
steps:
19-
- run: |
22+
- name: Cloning repository
23+
uses: actions/checkout@v4
24+
- name: Test evaluation
25+
run: |
2026
source env.sh && ./tests/setup_and_run.sh

0 commit comments

Comments
 (0)