Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.2', '8.3']
php-versions: ['8.2', '8.3', '8.4']
dependency-versions: ['lowest', 'highest']

steps:
- uses: actions/checkout@v3
Expand All @@ -33,8 +34,16 @@ jobs:
restore-keys: |
${{ runner.os }}-php-

- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Install composer dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-versions }}

- name: Print PHP version
run: php -v

- name: Print PHPUnit version
run: vendor/bin/phpunit --version

- name: Check coding standard
run: vendor/bin/phpcs -p
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"require": {
"php": "^8.2",
"php-vcr/php-vcr": "^1.0"
"php-vcr/php-vcr": "^1.1.5"
},
"require-dev": {
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
Expand Down
Loading
Loading