We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8206fb6 commit ab886b2Copy full SHA for ab886b2
.github/workflows/check.yml
@@ -41,10 +41,17 @@ jobs:
41
sudo -u postgres psql -c "CREATE USER test_user WITH PASSWORD 'test_password';"
42
sudo -u postgres psql -c "CREATE DATABASE test_db OWNER test_user;"
43
44
+ - name: Cache Composer dependencies
45
+ uses: actions/cache@v3
46
+ with:
47
+ path: /tmp/composer-cache
48
+ key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
49
+
50
- name: Install dependencies
51
uses: php-actions/composer@v6
52
with:
- args: --no-progress --no-suggest -n -q --prefer-dist
53
+ php-version: ${{ matrix.php-version }}
54
+ args: "--no-progress --no-suggest -n -q --prefer-dist"
55
56
- name: Run PHPUnit tests
57
run: vendor/bin/phpunit --testdox
0 commit comments