forked from raykolbe/DOMPDFModule
-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (41 loc) · 1.07 KB
/
continuous-integration.yml
File metadata and controls
48 lines (41 loc) · 1.07 KB
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
40
41
42
43
44
45
46
47
48
name: Continuous Integration
on: [pull_request]
jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
experimental: [false]
php-version:
- 7.4
- 8.0
- 8.1
deps:
- lowest
- highest
include:
- php-version: 8.2
deps: highest
experimental: true
composer-options: --ignore-platform-reqs
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: pcov
php-version: ${{ matrix.php-version }}
ini-values: zend.assertions=1
- name: Install dependencies with Composer
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.deps }}
composer-options: ${{ matrix.composer-options }}
- name: Run PHPUnit
run: vendor/bin/phpunit