Merge pull request #4940 from Laravel-Lang/projects/status-161zptr #368
This file contains 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" ] | |
publisher: [ "16.0" ] | |
name: PHP ${{ matrix.php }}, Publisher ${{ matrix.publisher }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- 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 |