File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -166,9 +166,6 @@ jobs:
166166 - name : Show Forge version
167167 run : forge --version
168168
169- - name : " Change to working directory"
170- run : cd ${{ inputs.working-directory || 'flow' }}
171-
172169 - name : " Install Bun"
173170 uses : " oven-sh/setup-bun@v2"
174171 with :
@@ -183,8 +180,9 @@ jobs:
183180 FOUNDRY_PROFILE=test-optimized forge build
184181
185182 - name : " Run the tests"
183+ working-directory : ${{ inputs.working-directory || 'flow' }}
186184 run : |
187- MATCH_PATH="${{ inputs.match-path || 'tests/{ integration,utils} /**/*.sol' }}"
185+ MATCH_PATH="${{ inputs.match-path || 'tests/integration/**/*.sol' }}"
188186 RETRY_ATTEMPTS="${{ inputs.retry-attempts || 1 }}"
189187
190188 for attempt in $(seq 1 $RETRY_ATTEMPTS); do
You can’t perform that action at this time.
0 commit comments