Skip to content

Commit

Permalink
ci: 🎡 fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ttskch committed May 23, 2024
1 parent 625b2de commit 0eaac36
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache-dir-path.outputs.path }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install Composer Dependencies
Expand Down
1 change: 1 addition & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ parameters:
level: max
paths:
- src
- bin/console
- tests
1 change: 1 addition & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
>
<projectFiles>
<directory name="src" />
<file name="bin/console" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
Expand Down
1 change: 0 additions & 1 deletion src/JpPostalCodeApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

final readonly class JpPostalCodeApi
{
/** @psalm-suppress PossiblyUnusedMethod */
public function __construct(
private CsvProviderInterface $csvProvider,
private CsvParserInterface $kenAllCsvParser,
Expand Down

0 comments on commit 0eaac36

Please sign in to comment.