We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48bef2c commit 912739bCopy full SHA for 912739b
.github/workflows/unit-test.yml
@@ -18,13 +18,22 @@ jobs:
18
19
steps:
20
- uses: actions/checkout@v4
21
+
22
+ # Setup the correct PHP version globally
23
+ - name: Set up PHP
24
+ uses: shivammathur/setup-php@v2
25
+ with:
26
+ php-version: ${{ matrix.php }}
27
28
- name: Cache Composer dependencies
29
uses: actions/cache@v4
30
with:
31
path: /tmp/composer-cache
32
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
33
34
- name: Install dependencies
35
run: composer install
36
37
- uses: php-actions/phpunit@v4
38
39
configuration: phpunit.xml.dist
0 commit comments