Skip to content

PHP forward compatibility #134

PHP forward compatibility

PHP forward compatibility #134

name: "PHP forward compatibility"
on:
schedule:
# Execute weekly checks
- cron: "0 14 * * 1"
jobs:
qa:
continue-on-error: true
name: Unit tests
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.1"
tools: "composer:v2"
env:
update: true
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: "latest"
composer-options: "--ignore-platform-req=php"
- name: Run unit tests
run: "vendor/bin/phpunit"