Skip to content

Commit

Permalink
Merge pull request #51 from michaelachrisco/reset-circleci
Browse files Browse the repository at this point in the history
Reset CircleCI config with additional php version
  • Loading branch information
michaelachrisco committed Mar 11, 2023
2 parents f89b169 + be00ff1 commit e39f062
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 34 deletions.
37 changes: 37 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
version: 2.1

jobs:
build_php_version_80:
docker:
- image: cimg/php:8.0.20
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_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_latest:
docker:
- image: circleci/php:latest
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
workflows:
version: 2
build:
jobs:
- build_php_version_80
- build_php_version_81
- build_latest
34 changes: 0 additions & 34 deletions .github/workflows/build_test.yml

This file was deleted.

0 comments on commit e39f062

Please sign in to comment.