Skip to content

Commit

Permalink
Fix: Cache for friendsofphp/php-cs-fixer (#729)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored Sep 5, 2023
1 parent 31c6842 commit 1c6d0e0
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/coding-standards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,11 @@ jobs:
- name: "Cache cache file for php-cs-fixer"
uses: "actions/cache@v3"
with:
path: ".php_cs.cache"
key: "composer-${{ matrix.php-version }}-${{ github.ref_name }}"
path: ".build/php-cs-fixer/"
key: "php-cs-fixer-${{ matrix.php-version }}-${{ github.ref_name }}"
restore-keys: |
composer-${{ matrix.php-version }}-main
composer-${{ matrix.php-version }}
composer-
php-cs-fixer-${{ matrix.php-version }}-main
php-cs-fixer-${{ matrix.php-version }}-
- name: "Run php-cs-fixer"
run: |
Expand Down

0 comments on commit 1c6d0e0

Please sign in to comment.