Skip to content

Instantly share code, notes, and snippets.

@stefanzweifel
Created September 5, 2018 09:46
Show Gist options
  • Save stefanzweifel/e9f87b72d1494563eabf3dacbedb9131 to your computer and use it in GitHub Desktop.
Save stefanzweifel/e9f87b72d1494563eabf3dacbedb9131 to your computer and use it in GitHub Desktop.
version: 2
jobs:
php71:
docker:
- image: circleci/php:7.1
steps:
- checkout
- composer install
- run: phpunit
php72:
docker:
- image: circleci/php:7.2
steps:
- checkout
- composer install
- run: phpunit
workflows:
version: 2
test:
jobs:
- php71
- php72
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment