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

Commit 906b4d4

Browse files
committed
Add CircleCI config
1 parent 4fba553 commit 906b4d4

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.circleci/config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2.0
2+
jobs:
3+
build:
4+
docker:
5+
- image: cimg/php:8.1.11
6+
steps:
7+
- checkout
8+
- run:
9+
name: Setup dependencies
10+
command: |
11+
sudo composer self-update
12+
composer install -n --prefer-dist
13+
- run:
14+
name: Run tests
15+
command: |
16+
sudo docker-php-ext-install bcmath
17+
sudo vendor/bin/phpunit -c tests/phpunit.xml.dist

0 commit comments

Comments
 (0)