Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed May 16, 2024
1 parent 9671dc7 commit 8ea9db3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php-${{ matrix.php-versions}}-phpunit-${{ matrix.phpunit-versions }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-php-${{ matrix.php-versions}}-phpunit-${{ matrix.phpunit-versions }}-composer-
key: ${{ runner.os }}-php-${{ matrix.php-versions }}-phpunit-${{ matrix.phpunit-versions }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-php-${{ matrix.php-versions }}-phpunit-${{ matrix.phpunit-versions }}-composer-

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: pcov
coverage: none
tools: infection, pint, phpstan

- name: Install dependencies
Expand All @@ -81,4 +81,4 @@ jobs:
composer update
- name: PHPUnit
run: ./vendor/bin/phpunit
run: ./vendor/bin/phpunit --do-not-cache-result

0 comments on commit 8ea9db3

Please sign in to comment.