Merge pull request #226 from yii2-extensions/fix-mini-102 #1180
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: | |
| apache: | |
| 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-apache vendor/bin/codecept build | |
| - name: Codeception tests. | |
| run: docker exec yii2-apache vendor/bin/codecept run |