Skip to content

Commit

Permalink
PHP 8.4 support (#1)
Browse files Browse the repository at this point in the history
* PHP 8.4

* Fail fast: false

* Fix workflow

* Composer update
  • Loading branch information
SRWieZ authored Oct 19, 2024
1 parent ed5c088 commit 9b84faf
Show file tree
Hide file tree
Showing 3 changed files with 224 additions and 224 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Tests

on:
pull_request: ~
pull_request:
push:
branches:
- main
Expand All @@ -10,9 +10,10 @@ jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php: [8.2, 8.3]
os: [ ubuntu-latest ]
php: [ 8.2, 8.3, 8.4 ]

name: Test with php ${{ matrix.php }} on ${{ matrix.os }}

Expand All @@ -39,7 +40,7 @@ jobs:
restore-keys: ${{ runner.os }}-composer-

- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
run: composer update -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist

- name: Run tests
run: ./vendor/bin/pest
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"bin/svgtinyps"
],
"require": {
"php": "^8.2|^8.3",
"php": "^8.2",
"ext-dom": "*",
"srwiez/php-svg-ps-converter": "^1.1",
"composer-runtime-api": "^2.2"
Expand Down
Loading

0 comments on commit 9b84faf

Please sign in to comment.