Skip to content

Commit ac04061

Browse files
authored
Replace TravicCI with CircleCI (#12)
1 parent 1237c46 commit ac04061

File tree

3 files changed

+28
-19
lines changed

3 files changed

+28
-19
lines changed

.circleci/config.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: circleci/php:7.0
7+
- image: systemli/etherpad-lite:1.6.1
8+
steps:
9+
- checkout
10+
- run: sudo composer self-update
11+
- restore_cache:
12+
keys:
13+
- composer-{{ checksum "composer.lock" }}
14+
- run: composer install -n --prefer-dist
15+
- save_cache:
16+
key: composer-{{ checksum "composer.lock" }}
17+
paths:
18+
- vendor
19+
- run:
20+
name: Running PHPUnit
21+
command: vendor/bin/phpunit
22+
- run:
23+
name: Wait for Etherpad
24+
command: dockerize -wait tcp://localhost:9001 -timeout 1m
25+
- run:
26+
name: Running Behat
27+
command: vendor/bin/behat -f progress

.travis.yml

-18
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PHP Client for Etherpad Lite
22

3-
[![Build Status](https://travis-ci.org/0x46616c6b/etherpad-lite-client.svg?branch=master)](https://travis-ci.org/0x46616c6b/etherpad-lite-client) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/?branch=master) [![Code Coverage](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/?branch=master) [![Latest Stable Version](https://poser.pugx.org/0x46616c6b/etherpad-lite-client/v/stable.png)](https://packagist.org/packages/0x46616c6b/etherpad-lite-client) [![License](https://poser.pugx.org/0x46616c6b/etherpad-lite-client/license.png)](https://packagist.org/packages/0x46616c6b/etherpad-lite-client)
3+
[![CircleCI](https://circleci.com/gh/0x46616c6b/etherpad-lite-client.svg?style=svg)](https://circleci.com/gh/0x46616c6b/etherpad-lite-client) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/?branch=master) [![Code Coverage](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/0x46616c6b/etherpad-lite-client/?branch=master) [![Latest Stable Version](https://poser.pugx.org/0x46616c6b/etherpad-lite-client/v/stable.png)](https://packagist.org/packages/0x46616c6b/etherpad-lite-client) [![License](https://poser.pugx.org/0x46616c6b/etherpad-lite-client/license.png)](https://packagist.org/packages/0x46616c6b/etherpad-lite-client)
44

55
This package provides an easy access to [Etherpad Lite](https://github.com/ether/etherpad-lite) throw there built-in [HTTP API](http://etherpad.org/doc/v1.2.11/#index_http_api).
66

0 commit comments

Comments
 (0)