Skip to content

Commit 7d8dc8c

Browse files
committed
ci: remove cache
1 parent 3669eb7 commit 7d8dc8c

3 files changed

Lines changed: 4 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,8 @@ jobs:
6363
uses: shivammathur/setup-php@v2
6464
with:
6565
php-version: ${{ matrix.php-version }}
66-
67-
- name: Get Composer cache directory
68-
id: composer-cache
69-
run: echo "::set-output name=dir::$(composer config cache-dir)"
70-
71-
- name: Cache dependencies
72-
uses: actions/cache@v2
73-
with:
74-
path: ${{ steps.composer-cache.outputs.dir }}
75-
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}-${{ matrix.composer-flags }}
76-
restore-keys: |
77-
composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}-
78-
composer-${{ runner.os }}-${{ matrix.php-version }}-
79-
composer-${{ runner.os }}-
80-
composer-
66+
coverage: none
67+
tools: composer:v2
8168

8269
- name: Install dependencies
8370
uses: nick-invision/retry@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"require-dev": {
1111
"phpunit/phpunit": "^9.5",
12-
"friendsofphp/php-cs-fixer": "^2.18"
12+
"friendsofphp/php-cs-fixer": "^2.19"
1313
},
1414
"authors": [
1515
{

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/9.5/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
55
beStrictAboutTestsThatDoNotTestAnything="false"
66
colors="true"
77
bootstrap="vendor/autoload.php"

0 commit comments

Comments
 (0)