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 30ac543 commit 3646763Copy full SHA for 3646763
.github/workflows/php.yml
@@ -14,7 +14,7 @@ jobs:
14
strategy:
15
fail-fast: false
16
matrix:
17
- php-version: ['7.3', '7.4', '8.0', '8.1']
+ php-version: ['7.4', '8.0', '8.1', '8.2']
18
19
steps:
20
- uses: actions/checkout@v2
@@ -28,17 +28,7 @@ jobs:
28
- name: Validate composer.json and composer.lock
29
run: composer validate
30
31
- # - name: Cache Composer packages
32
- # id: composer-cache
33
- # uses: actions/cache@v2
34
- # with:
35
- # path: vendor
36
- # key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
37
- # restore-keys: |
38
- # ${{ runner.os }}-php-
39
-
40
- name: Install dependencies
41
- # if: steps.composer-cache.outputs.cache-hit != 'true'
42
run: composer update --prefer-dist --no-progress
43
44
- name: Run test suite
0 commit comments