Bump docker/login-action from 3.4.0 to 3.6.0 #278
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: Code Intelligence | |
| on: | |
| push: | |
| branches: [ "master", "develop" ] | |
| pull_request: | |
| branches: [ "master", "develop" ] | |
| jobs: | |
| coverage-report: | |
| runs-on: ubuntu-latest | |
| name: Coverage and code insight report | |
| steps: | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.1" | |
| coverage: xdebug | |
| extensions: | |
| fileinfo | |
| - uses: actions/checkout@v4 | |
| - name: Cache Composer packages | |
| id: composer-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php- | |
| - name: Install dependencies | |
| run: composer install --no-interaction --no-progress --no-suggest --prefer-dist | |
| - name: Execute tests (Unit and Feature tests) via Pest | |
| run: vendor/bin/pest --coverage --coverage-html=coverage | |
| - name: Upload coverage report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage | |
| path: coverage |