Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
lrljoe authored Oct 25, 2024
1 parent 7b0d760 commit c4688a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-phpstan-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,13 @@ jobs:
id: larastan-restore
with:
path: ./build/phpstan
key: phpstan-result-cache
key: phpstan-${{ matrix.os }}-P${{ matrix.php }}-L${{ matrix.laravel }}

- name: Run PHPStan Tests
run: ./vendor/bin/phpstan analyse

- uses: actions/cache/save@v4
id: larastan-save
with:
path: ${{ steps.larastan-restore.path }}
key: ${{ steps.larastan-restore.key }}
path: ./build/phpstan
key: phpstan-${{ matrix.os }}-P${{ matrix.php }}-L${{ matrix.laravel }}
6 changes: 3 additions & 3 deletions .github/workflows/run-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ jobs:
id: larastan-restore
with:
path: ./build/phpstan
key: phpstan-${{ matrix.os }}-P${{ matrix.php }}-L${{ matrix.laravel }}-composer-${{ hashFiles('**/composer.json') }}
key: phpstan-${{ matrix.os }}-P${{ matrix.php }}-L${{ matrix.laravel }}

- name: Run PHPStan Tests
run: ./vendor/bin/phpstan analyse

- uses: actions/cache/save@v4
id: larastan-save
with:
path: ${{ steps.larastan-restore.path }}
key: ${{ steps.larastan-restore.key }}
path: ./build/phpstan
key: phpstan-${{ matrix.os }}-P${{ matrix.php }}-L${{ matrix.laravel }}

0 comments on commit c4688a1

Please sign in to comment.