-
Notifications
You must be signed in to change notification settings - Fork 40
39 lines (31 loc) · 1.12 KB
/
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
30
31
32
33
34
35
36
37
38
39
name: CI
on: [push]
jobs:
moderate-modern:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
continue-on-error: ${{ matrix.php-versions == '8.2' }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl, sodium
ini-values: error_reporting=-1, display_errors=On
coverage: none
- name: Install Composer dependencies (PHP < 8.1)
if: ${{ matrix.php-versions != '8.2' }}
uses: "ramsey/composer-install@v1"
- name: Install Composer dependencies - ignore-platform-reqs (PHP 8.1)
if: ${{ matrix.php-versions == '8.2' }}
uses: "ramsey/composer-install@v1"
with:
composer-options: --ignore-platform-reqs
- name: PHPUnit tests
run: vendor/bin/phpunit