Fix missing return #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Start docker π§ | |
run: | | |
docker-compose -f docker-compose.yml -f .github/docker-compose.yml up -d | |
- name: Cache multiple paths | |
uses: actions/cache@v2 | |
with: | |
path: | | |
**/vendor | |
key: ${{ runner.os }}-${{ hashFiles('*.lock') }} | |
- name: Install the dependencies π§ | |
run: | | |
docker-compose exec -T application composer install --prefer-dist --no-interaction --no-progress | |
- name: Execute the tests π§ | |
run: | | |
docker-compose exec -T application php -d extension=pcov.so ./vendor/bin/phpunit --configuration phpunit.xml.dist --colors=never --coverage-text --log-junit reports/junit.xml --coverage-html reports/coverage --coverage-clover build/logs/clover.xml | |
- name: Upload results to Coveralls π | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_SECRET }} | |
run: | | |
docker-compose exec -T application composer global require php-coveralls/php-coveralls --prefer-dist --no-interaction --no-progress | |
docker-compose exec -T -e COVERALLS_REPO_TOKEN="$COVERALLS_REPO_TOKEN" application /home/application/.composer/vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v | |
- name: PHPInsights π§ | |
run: | | |
docker-compose exec -T application ./vendor/bin/phpinsights | |
- name: PHPStan π§ | |
run: | | |
docker-compose exec -T application ./vendor/bin/phpstan |