Skip to content

Commit

Permalink
Update php.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dfiedlerx committed Jun 21, 2023
1 parent 208c233 commit a657fe7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,19 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: CD App
run: cd app
- name: Validate composer.json and composer.lock
run: composer validate --strict

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: app/vendor
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: CD App
run: cd app
- name: Install dependencies
run: cd composer install --prefer-dist --no-progress
Expand Down

0 comments on commit a657fe7

Please sign in to comment.