Skip to content

Commit

Permalink
Test PHP 8.2 too
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Nov 18, 2023
1 parent 3d4d080 commit dfcf587
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,20 @@ jobs:
paths: [./vendor]
- run: ./vendor/bin/phpunit

"php-8.2":
docker:
- image: aimeos/ci-php:8.2
steps:
- checkout
- restore_cache:
keys:
- php80-{{ checksum "composer.json" }}
- run: composer update -n --prefer-dist
- save_cache:
key: php80-{{ checksum "composer.json" }}
paths: [./vendor]
- run: ./vendor/bin/phpunit

workflows:
version: 2
unittest:
Expand All @@ -100,3 +114,4 @@ workflows:
- "php-7.4"
- "php-8.0"
- "php-8.1"
- "php-8.2"

0 comments on commit dfcf587

Please sign in to comment.