Skip to content

fix(php-8.2): improve the default config path for other os #73

fix(php-8.2): improve the default config path for other os

fix(php-8.2): improve the default config path for other os #73

Workflow file for this run

name: tests
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2]
name: P${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.composer/cache/files
key: php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
ini-values: error_reporting=E_ALL
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Execute tests
run: composer run-script test