Skip to content

chore: define matrix build for different PHP versions #17

chore: define matrix build for different PHP versions

chore: define matrix build for different PHP versions #17

Workflow file for this run

name: QA
on: pull_request
jobs:
qa:
strategy:
matrix:
version: [ '8.2', '8.3', '8.4' ]
name: QA
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Use PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
tools: composer
env:
update: true
- name: Install dependencies
run: |
composer install
- name: Run QA
run: |
composer qa