Skip to content

Merge pull request #158 from Fabio1988/patch-2 #796

Merge pull request #158 from Fabio1988/patch-2

Merge pull request #158 from Fabio1988/patch-2 #796

Workflow file for this run

name: PHP Composer
on:
push:
pull_request:
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
name: PHP ${{ matrix.php-versions }} test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
tools: composer
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: composer test