Merge pull request #544 from netglue/php-8.4 #1057
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: "Continuous Integration" | |
on: | |
pull_request: | |
push: | |
branches: | |
- '[0-9]+.[0-9]+.x' | |
tags: | |
jobs: | |
ci: | |
uses: laminas/workflow-continuous-integration/.github/workflows/[email protected] | |
coverage: | |
name: PHPUnit Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: shivammathur/[email protected] | |
with: | |
php-version: 8.1 | |
extensions: pcov | |
coverage: pcov | |
ini-values: pcov.enabled=1 | |
- uses: "ramsey/[email protected]" | |
- run: php ./vendor/bin/phpunit --coverage-clover=coverage.xml | |
env: | |
PRISMIC_REPO: ${{ secrets.PRISMIC_REPO }} | |
PRISMIC_TOKEN: ${{ secrets.PRISMIC_TOKEN }} | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml | |
fail_ci_if_error: false | |
composer-require-checker: | |
name: "Check for missing dependencies" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/[email protected] | |
- uses: shivammathur/[email protected] | |
with: | |
php-version: 8.1 | |
- uses: "ramsey/[email protected]" | |
with: | |
dependency-versions: "highest" | |
- run: composer global config bin-dir /usr/local/bin | |
- run: composer global require -W maglnet/composer-require-checker | |
- run: /usr/local/bin/composer-require-checker check |