Skip to content

Merge pull request #596 from laravel-shift/l11-compatibility #806

Merge pull request #596 from laravel-shift/l11-compatibility

Merge pull request #596 from laravel-shift/l11-compatibility #806

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- master
pull_request:
branches:
- *

Check failure on line 9 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
schedule:
- cron: '0 0 * * *'
jobs:
php-tests:
runs-on: ubuntu-latest
timeout-minutes: 15
env:
COMPOSER_NO_INTERACTION: 1
strategy:
fail-fast: false
matrix:
php: [7.2, 7.3, 7.4, 8.0, 8.1, '8.2']
name: P${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer:v2
- name: Install dependencies
run: |
composer install -o --quiet
- name: Execute Unit Tests
run: composer test