chore(deps-dev): bump phpunit/phpunit from 12.4.3 to 12.4.4 #1172
Workflow file for this run
This file contains hidden or 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: test | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| php-version: | |
| - '8.4' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Pull | |
| run: docker compose pull --quiet | |
| - name: Build | |
| run: docker compose build --build-arg PHPVERSION=${{ matrix.php-version }} | |
| - name: Test | |
| run: docker compose run -e "PHP_CS_FIXER_IGNORE_ENV=True" lib composer ci | |
| - name: Upload coverage | |
| uses: codecov/codecov-action@v5 | |
| if: success() | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./coverage/clover.xml |