Skip to content

Delete : directory #389

Delete : directory

Delete : directory #389

Workflow file for this run

name: Tests
on:
push:
branches-ignore:
- 'projects/**'
pull_request:
branches-ignore:
- 'projects/**'
permissions: read-all
jobs:
laravel:
runs-on: ${{ secrets.RUNNER_NAME }}

Check failure on line 15 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 15, Col: 18): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.RUNNER_NAME
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
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