We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0170f66 commit a938fd0Copy full SHA for a938fd0
.github/workflows/build-ci.yml
@@ -33,11 +33,13 @@ jobs:
33
docker-compose build --build-arg PHP_VERSION=${{ matrix.php }}
34
- name: Install dependencies
35
run: |
36
+ mkdir vendor
37
docker-compose run --rm tests composer install --no-interaction
38
- name: Generating code coverage
39
40
mkdir -p build/logs
- php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
41
+ docker-compose run --rm \
42
+ tests ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
43
- name: Send coveralls
44
45
ls -alt
0 commit comments