docs: Add changelog for 4.16.0 #684
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: Build | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| release: | |
| types: [ created ] | |
| jobs: | |
| check_composer: | |
| name: Check composer.json | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: none | |
| php-version: '8.3' | |
| - run: composer validate --strict --no-check-lock | |
| check_code: | |
| name: Analyse code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: none | |
| php-version: '8.3' | |
| - run: composer update --ansi --no-progress | |
| - run: composer lint | |
| tests: | |
| runs-on: ubuntu-latest | |
| name: Build and test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php: [ 8.1, 8.2, 8.3, 8.4, 8.5 ] | |
| composer-flags: [ "" ] | |
| include: | |
| - php: 8.1 | |
| composer-flags: "--with=symfony/yaml:^5.4" | |
| - php: 8.1 | |
| composer-flags: "--with=symfony/yaml:^6.4" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "${{ matrix.php }}" | |
| ini-file: "development" | |
| coverage: "xdebug" | |
| - run: composer update ${{ matrix.composer-flags }} --ansi --no-progress | |
| - run: composer test -- --coverage-clover=coverage.xml --log-junit junit.xml --testdox | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: coverage.xml | |
| flags: php${{ matrix.php }}${{ matrix.composer-flags }} | |
| - uses: codecov/test-results-action@v1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |