Skip to content

- fixed action. #2

- fixed action.

- fixed action. #2

Workflow file for this run

name: "Tests"
on: ['push', 'pull_request']
jobs:
ci:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os: [ubuntu-latest]
php: ['7.3', '7.4', '8.1', '8.2', '8.3']
name: "PHP ${{ matrix.php }} - ${{ matrix.os }}"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Setup PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php }}"
tools: "composer:v2"
coverage: "none"
- name: "Install PHP dependencies"
run: "composer install --prefer-stable --no-interaction --no-progress"
- name: "Unit Tests"
run: "vendor/bin/phpunit --colors=always"