Skip to content

Allow reading of version information from env-vars #31

Allow reading of version information from env-vars

Allow reading of version information from env-vars #31

Workflow file for this run

# .github/workflows/code_coverage.yaml
name: Code_Coverage
on: ["pull_request"]
jobs:
code_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: pcov
- run: composer install --no-progress
- 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