Merge pull request #7924 from asefanovska1-ui/patch-1 #3263
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: Tests | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'projects/**' | |
| pull_request: | |
| branches-ignore: | |
| - 'projects/**' | |
| permissions: read-all | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: [ "8.2", "8.3", "8.4" ] | |
| publisher: [ "16.0" ] | |
| name: PHP ${{ matrix.php }}, Publisher ${{ matrix.publisher }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: curl, mbstring, zip, pcntl, pdo, pdo_sqlite, iconv | |
| coverage: xdebug | |
| env: | |
| COMPOSER_TOKEN: ${{ secrets.COMPOSER_TOKEN }} | |
| - name: Install dependencies | |
| run: composer require laravel-lang/publisher:^${{ matrix.publisher }} | |
| - name: Execute tests | |
| run: sudo vendor/bin/phpunit --colors=always |