Skip to content

Commit c26be1a

Browse files
committed
Wrote documentation files
1 parent 1a179b3 commit c26be1a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1261
-364
lines changed

.circleci/config.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,23 @@ jobs:
77
- image: circleci/php:8.0-fpm-node-browsers
88
steps:
99
- checkout
10+
- run:
11+
name: Install dependencies
12+
command: |
13+
apt-get update
14+
apt-get install -y python3 python3-pip
15+
pip3 install coverage coveralls
1016
- run: sudo composer self-update --no-progress --no-interaction
1117
- run: composer install --no-progress --no-interaction --prefer-dist
1218
- run: ./vendor/bin/phpunit
13-
19+
- run:
20+
name: Generate code coverage report
21+
command: coverage run -m unittest discover
22+
- run:
23+
name: Upload code coverage report to Coveralls
24+
command: coveralls
25+
environment:
26+
COVERALLS_REPO_TOKEN: oTgNlNs5fUmP2vsiEDuCET4o1RCyC7iBe
1427
workflows:
1528
version: 2
1629
test:

.phpunit.result.cache

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)