Skip to content

Merge pull request #380 from Laravel-Lang/andrey-helldar-patch-1 #641

Merge pull request #380 from Laravel-Lang/andrey-helldar-patch-1

Merge pull request #380 from Laravel-Lang/andrey-helldar-patch-1 #641

Workflow file for this run

name: phpunit
on: [ push, pull_request ]
permissions: read-all
jobs:
laravel:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ "8.1", "8.2", "8.3" ]
publisher: [ "14.0", "15.0", "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, json
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