Skip to content

Commit 410c623

Browse files
authored
Fixes
1 parent 34a3314 commit 410c623

File tree

2 files changed

+4
-20
lines changed

2 files changed

+4
-20
lines changed

.github/workflows/run-phpstan-pull.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,6 @@ jobs:
2323
extensions: dom, curl, libxml, mbstring, zip, pcntl, pcov, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
2424

2525
steps:
26-
- name: Wait for tests to finish
27-
uses: lewagon/[email protected]
28-
with:
29-
ref: ${{ github.ref }}
30-
running-workflow-name: 'Run Tests Pull'
31-
repo-token: ${{ secrets.GITHUB_TOKEN }}
32-
wait-interval: 20
33-
3426
- name: Checkout code
3527
uses: actions/checkout@v4
3628

@@ -70,8 +62,8 @@ jobs:
7062
- uses: actions/cache@v4
7163
with:
7264
path: ${{ steps.composer-cache.outputs.dir }}
73-
key: ${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-${{ hashFiles('**/composer.json') }}
74-
restore-keys: ${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-
65+
key: phpstan-${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-${{ hashFiles('**/composer.json') }}
66+
restore-keys: phpstan-${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-
7567

7668
- name: Add token
7769
run: |

.github/workflows/run-phpstan.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,6 @@ jobs:
2626
extensions: dom, curl, libxml, mbstring, zip, pcntl, pcov, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
2727

2828
steps:
29-
- name: Wait for tests to finish
30-
uses: lewagon/[email protected]
31-
with:
32-
ref: ${{ github.ref }}
33-
running-workflow-name: 'Run Standard Tests'
34-
repo-token: ${{ secrets.GITHUB_TOKEN }}
35-
wait-interval: 20
36-
3729
- name: Checkout code
3830
uses: actions/checkout@v4
3931

@@ -73,8 +65,8 @@ jobs:
7365
- uses: actions/cache@v4
7466
with:
7567
path: ${{ steps.composer-cache.outputs.dir }}
76-
key: ${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-${{ hashFiles('**/composer.json') }}
77-
restore-keys: ${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-
68+
key: phpstan-${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-${{ hashFiles('**/composer.json') }}
69+
restore-keys: phpstan-${{ matrix.os }}-PHP${{ matrix.php }}-L${{ matrix.laravel }}-composer-
7870

7971
- name: Add token
8072
run: |

0 commit comments

Comments
 (0)