Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
travisci was replaced to circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
fenric committed Aug 5, 2021
1 parent f58c567 commit ae3594e
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 18 deletions.
55 changes: 55 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# PHP CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-php/ for more details
#
version: 2
jobs:
php71:
docker:
- image: circleci/php:7.1-cli-node-browsers
steps:
- checkout
- run: php -v
- run: composer install --no-interaction --prefer-source
- run: php vendor/bin/phpunit --colors=always
php72:
docker:
- image: circleci/php:7.2-cli-node-browsers
steps:
- checkout
- run: php -v
- run: composer install --no-interaction --prefer-source
- run: php vendor/bin/phpunit --colors=always
php73:
docker:
- image: circleci/php:7.3-cli-node-browsers
steps:
- checkout
- run: php -v
- run: composer install --no-interaction --prefer-source
- run: php vendor/bin/phpunit --colors=always
php74:
docker:
- image: circleci/php:7.4-cli-node-browsers
steps:
- checkout
- run: php -v
- run: composer install --no-interaction --prefer-source
- run: php vendor/bin/phpunit --colors=always
php80:
docker:
- image: circleci/php:8.0-cli-node-browsers
steps:
- checkout
- run: php -v
- run: composer install --no-interaction --prefer-source
- run: php vendor/bin/phpunit --colors=always
workflows:
version: 2
build:
jobs:
- php71
- php72
- php73
- php74
- php80
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit ae3594e

Please sign in to comment.