Bump symfony/doctrine-bridge from 7.4.3 to 7.4.4 #992
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: Tests | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Start stack | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml pull --include-deps | |
| docker compose -f compose.yaml -f compose.tests.yaml build | |
| docker compose -f compose.yaml -f compose.tests.yaml up -d | |
| - name: Install vendors | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app composer install --no-ansi --no-interaction --no-progress --prefer-dist | |
| - name: Install tools | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app composer phive:install --no-interaction --no-progress --no-ansi | |
| - name: Initialize database | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app bin/console messenger:setup-transports | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app bin/console doctrine:migration:migrate -n | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app bin/console doctrine:schema:validate -v | |
| - name: PHP-CS-Fixer | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app composer cs:check | |
| - name: PHPStan | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app vendor/bin/phpstan --no-ansi analyze --configuration phpstan.test.neon | |
| - name: Rector | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app vendor/bin/rector --no-ansi --dry-run | |
| - name: Tests | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml exec app tools/phpunit.phar | |
| - name: Stop stack | |
| if: always() | |
| shell: bash | |
| run: | | |
| docker compose -f compose.yaml -f compose.tests.yaml down | |
| dependabot-automerge: | |
| name: Auto-merge Dependabot PRs | |
| needs: tests # only on successful tests | |
| runs-on: ubuntu-latest | |
| # required so the action can approve & merge the PR | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - name: Auto-merge Dependabot PRs | |
| uses: fastify/github-action-merge-dependabot@v3 | |
| with: | |
| # only automerge patch & minor semver bumps | |
| target: minor |