Skip to content

feat: allow "doctrine/dbal" 4 #334

feat: allow "doctrine/dbal" 4

feat: allow "doctrine/dbal" 4 #334

Workflow file for this run

# .github/workflows/code_coverage.yaml
name: Code_Coverage
on: ["push", "pull_request"]
jobs:
code_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: pcov
- run: composer install --no-progress
- name: Get Code-Coverage
env:
SYMFONY_DEPRECATIONS_HELPER: 'weak'
run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: build/logs/clover.xml