[TM-2965] add new field for organisation #2551
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: pull-request | |
| on: | |
| pull_request: | |
| jobs: | |
| lintTest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build docker | |
| uses: docker/bake-action@v6 | |
| with: | |
| load: true | |
| source: . | |
| set: | | |
| mariadb.cache-to=type=gha,mode=max,scope=mariadb | |
| mariadb.cache-from=type=gha,scope=mariadb | |
| php.cache-to=type=gha,mode=max,scope=php | |
| php.cache-from=type=gha,scope=php | |
| allow: network.host | |
| files: | | |
| docker-compose.yml | |
| - name: Install deps | |
| run: make composer | |
| - name: Bring up Docker | |
| run: make up | |
| - name: Lint & Test | |
| run: make test | |
| - name: Store logs | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: PHP Logs | |
| path: storage/logs/ | |
| if-no-files-found: ignore |