Update config.yml - remove php 8.1 so illuminate/database can be used

This commit is contained in:
Michael Chrisco 2024-03-27 10:41:49 -07:00 committed by GitHub
parent 5c74932b0f
commit 55391df62d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,15 +1,6 @@
version: 2.1 version: 2.1
jobs: jobs:
build_php_version_81:
docker:
- image: cimg/php:8.1.14
working_directory: ~/ReadOnlyTraitLaravel
steps: # a set of executable commands
- checkout
- run: sudo composer self-update
- run: composer install -n --prefer-dist --no-plugins
- run: ./vendor/bin/kahlan -reporter=verbose
build_php_version_82: build_php_version_82:
docker: docker:
- image: cimg/php:8.2.12 - image: cimg/php:8.2.12
@ -32,6 +23,5 @@ workflows:
version: 2 version: 2
build: build:
jobs: jobs:
- build_php_version_81
- build_php_version_82 - build_php_version_82
- build_php_version_83 - build_php_version_83