Skip to content

Tests

Tests #110

Workflow file for this run

name: Tests
on:
schedule:
- cron: "0 0 * * *"
push:
branches: [ main, develop, feature/** ]
pull_request:
branches: [ main, develop, feature/** ]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
php-versions: [ '8.1', '8.2', '8.3' ]
name: PHP ${{ matrix.php-versions }} - ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run test suite
run: vendor/bin/phpunit --testdox --coverage-html coverage