Skip to content

Commit

Permalink
Added CircleCI config file
Browse files Browse the repository at this point in the history
  • Loading branch information
chajr committed Aug 8, 2020
1 parent 4912dc0 commit 9e6c387
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2.1

jobs:
build:
docker:
- image: circleci/php:7.2
steps:
- checkout
- run: composer install
test:
docker:
- image: circleci/php:7.2
steps:
- checkout
- run: phpunit

workflows:
version: 2
build_and_test:
jobs:
- build
- test

0 comments on commit 9e6c387

Please sign in to comment.