Skip to content

Add a mechanism to stop scheduled runs for non stable #192

Add a mechanism to stop scheduled runs for non stable

Add a mechanism to stop scheduled runs for non stable #192

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches: [main]
schedule:
- cron: '0 0 * * *'
jobs:
test:
if: (github.event_name != 'schedule' || github.repository == 'ylsideas/feature-flags') &&
!(matrix.dependencies != 'stable' && github.event_name == 'scheduled')
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2, 8.1]
laravel: [9.*, 10.*]
dependencies: [lowest, stable]
include:
- laravel: 9.*
testbench: ^7.0
- laravel: 10.*
testbench: ^8.0
- php: 8.3
dependencies: lowest
carbon: ^2.62.1
- php: 8.2
dependencies: lowest
carbon: ^2.62.1
exclude:

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

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/run-tests.yml (Line: 33, Col: 25): Unexpected value ''
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependencies }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Require Laravel Version
run: >
composer require
"laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}"
--no-interaction --no-update
- name: Require Minimum Packages for version
if: ${{ matrix.php == '8.2' && matrix.dependencies == 'lowest' }}
run: >
composer require
"nesbot/carbon:${{ matrix.carbon }}"
--no-interaction --no-update
- name: Install dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependencies }}
composer-options: ${{ matrix.composer-options }}
- name: Execute tests
run: vendor/bin/pest