Skip to content

Release v0.4.0

Release v0.4.0 #29

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-24.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