Bump phpunit/phpunit from 13.0.2 to 13.0.5 #70
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-version: [ '8.4' ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| coverage: xdebug | |
| tools: composer:v2 | |
| - name: Validate composer.json and composer.lock | |
| run: ./composer.phar validate --strict --no-check-lock | |
| - name: Cache Composer packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php-${{ matrix.php-version }}- | |
| - name: Install dependencies | |
| run: ./composer.phar install --prefer-dist --no-progress | |
| - name: Check pattern structure | |
| run: ./composer.phar structure:check | |
| - name: Run test suite with coverage | |
| env: | |
| XDEBUG_MODE: coverage | |
| run: ./composer.phar test:coverage | |
| - name: Check coverage threshold | |
| run: ./composer.phar coverage:check | |
| - name: Run coding standards | |
| run: ./composer.phar cs | |
| - name: Run static analysis | |
| run: ./composer.phar stan |