Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: php-actions/composer@v1 | |
- name: Persist working directory | |
uses: actions/upload-artifact@v1 | |
with: | |
name: pwd | |
path: ./ | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Download persisted dependencies | |
uses: actions/[email protected] | |
with: | |
name: pwd | |
path: ./ | |
- uses: php-actions/phpunit@v1 |