Skip to content
Merged
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
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@ jobs:
command: |
composer run all-checks-strict
name: Run all checks
php_84_tests:
docker:
- image: cimg/php:8.4
steps:
- checkout
- run:
command: |
composer install
name: Composer install
- run:
command: |
composer run all-checks-strict
name: Run all checks
notify_slack:
docker:
- image: cimg/node:17.2.0
Expand All @@ -83,6 +96,7 @@ workflows:
- php_81_tests
- php_82_tests
- php_83_tests
- php_84_tests
run_notify_slack:
jobs:
- notify_slack:
Expand Down