Skip to content

Commit e338c49

Browse files
committed
chore: define matrix build
1 parent 2cb37f3 commit e338c49

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/qa.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on: pull_request
44

55
jobs:
66
qa:
7+
strategy:
8+
matrix:
9+
version: [ '8.2', '8.3', '8.4' ]
710
name: QA
811
runs-on: ubuntu-latest
912
timeout-minutes: 15
@@ -14,8 +17,11 @@ jobs:
1417
- name: Use PHP
1518
uses: shivammathur/setup-php@v2
1619
with:
17-
php-version: '8.4'
20+
php-version: ${{ matrix.version }}
1821
tools: composer
22+
env:
23+
update: true
24+
1925
- name: Install dependencies
2026
run: |
2127
composer install

0 commit comments

Comments
 (0)