Skip to content

added exist() to check variants #7

added exist() to check variants

added exist() to check variants #7

Workflow file for this run

name: PHP
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
php-versions: ['5.6', '7.4', '8.1', '8.2']
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Validate composer.json and composer.lock
run: composer validate
- name: Composer install
run: composer install
- name: Composer test
run: composer run-script test --timeout=3600