Update dependency dama/doctrine-test-bundle to v8.2.2 (#4392) #16153
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
name: PHP ${{ matrix.php }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ["8.3"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
- run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- uses: ramsey/composer-install@v3 | |
- run: vendor/bin/phpunit | |
docker-prod: | |
name: Docker Prod | |
runs-on: ubuntu-latest | |
env: | |
ENV: prod | |
RESET_DATABASE: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-buildx-action@v3 | |
- run: make pull | |
- run: make setup build | |
- run: make up | |
- run: make check-database | |
- run: sleep 2s | |
shell: bash | |
- run: curl -f http://localhost:8080 | |
docker-dev: | |
name: Docker Dev | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-buildx-action@v3 | |
- run: make pull | |
- run: make setup build | |
- run: make up | |
- run: make provision | |
- run: make check-database | |
- run: curl -f http://localhost:8080 |