Sync to main branch. #1104
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
| --- | |
| on: | |
| pull_request: &ignore-paths | |
| paths-ignore: | |
| - ".gitattributes" | |
| - ".gitignore" | |
| - "CHANGELOG.md" | |
| - "docs/**" | |
| - "README.md" | |
| push: *ignore-paths | |
| name: build | |
| permissions: | |
| contents: read | |
| jobs: | |
| franken-php: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout. | |
| uses: actions/checkout@v5 | |
| - name: Build and start containers. | |
| run: docker compose up -d --build --wait | |
| - name: Codeception build. | |
| run: docker exec yii2-frankenphp vendor/bin/codecept build | |
| - name: Codeception tests. | |
| run: docker exec yii2-frankenphp vendor/bin/codecept run |