-
-
Notifications
You must be signed in to change notification settings - Fork 24
29 lines (24 loc) · 924 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: CI
on: [push]
jobs:
tests:
name: 'PHP ${{ matrix.php }} (Composer Flags: ${{ matrix.composer }})'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2, 8.3]
composer: ['--prefer-stable', '--prefer-lowest']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, fileinfo, filter, gd, hash, intl, json, mbstring, mysqli, pcre, pdo_mysql, zlib
coverage: none
- name: Checkout
uses: actions/checkout@v3
- name: Install the dependencies
run: composer update --no-interaction --no-suggest ${{ matrix.composer }}
- name: Run the unit tests
run: vendor/bin/phpunit --colors=always