Skip to content

Commit

Permalink
Update php-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
admdly committed Nov 27, 2023
1 parent a5a798c commit 0635ccd
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/php-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,20 @@ jobs:
uses: actions/download-artifact@v3
with:
name: build-archive-php${{ matrix.php }}
path: /tmp/build
path: /tmp/builds

- name: Extract Build Archive
run: tar -xvf /tmp/builds/build.tar ./

- name: Prepare Build for Tests
- name: Download Files Required for Tests
if: ${{ inputs.prepare_script != '' }}
uses: actions/download-artifact@v3
with:
name: ${{ inputs.prepare_script }}
path: /tmp/${{ inputs.prepare_script }}

- name: 'Run Script to Prepare Test Environment'
if: ${{ inputs.prepare_script != '' }}
run: bash ${{ inputs.prepare_script }}

- name: PHPStan
Expand Down

0 comments on commit 0635ccd

Please sign in to comment.