Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrading to Pest3 PHP #35

Merged
merged 2 commits into from
Sep 10, 2024
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/quality-check.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: Quality Check

on: [push, pull_request]
on:
push:
branches:
- main


jobs:
php-checks:
runs-on: ${{ matrix.operating-system}}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: [ '8.3' ]
php-versions: [ '8.3', '8.2', '8.1' ]
name: P${{ matrix.php-versions }} - ${{ matrix.operating-system}}
steps:
- name: Setup PHP
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.2.1 - 10th September 2024
- Upgrading to Pest3 and PHPunit 11(PHP Testing)

## 1.2.0 - 10th September 2024
- Embed images for EPUB
- Fix loading image via relative path
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
},
"require-dev": {
"laravel/pint": "^1.2",
"pestphp/pest": "^2.33",
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^1.10",
"rector/rector": "^1",
"symfony/var-dumper": "^6.0|^7.0"
Expand Down
Loading