Skip to content

Bump ramsey/composer-install from 2 to 3 #170

Bump ramsey/composer-install from 2 to 3

Bump ramsey/composer-install from 2 to 3 #170

Workflow file for this run

name: Run Tests
on: [push]
jobs:
php-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
php: [8.1, 8.2, 8.3]
dependency-version: [lowest, highest]
name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }} on ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4.1.1
- name: Setup PHP
uses: shivammathur/setup-php@2.29.0
with:
php-version: ${{ matrix.php }}
extensions: mbstring, fileinfo
coverage: none
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dependency-version }}
composer-options: "--no-suggest --prefer-dist"
- name: Execute tests
run: vendor/bin/phpunit