-
Notifications
You must be signed in to change notification settings - Fork 938
48 lines (40 loc) · 1.18 KB
/
build.yml
File metadata and controls
48 lines (40 loc) · 1.18 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: build
on:
schedule:
- cron: "0 13 * * 1"
push:
branches:
- master
- 5.x
pull_request:
branches:
- master
- 5.x
jobs:
test:
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: true
matrix:
operating-system: [ ubuntu-latest ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
dependencies: [ 'lowest', 'highest' ]
name: PHP ${{ matrix.php }} on ${{ matrix.operating-system }} with ${{ matrix.dependencies }} dependencies
steps:
- uses: actions/checkout@v5
name: Checkout repository
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
- name: Composer install
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dependencies }}
composer-options: "${{ matrix.composer-options }}"
- name: Require type-info-extras
if: ${{ matrix.php >= '8.2' }}
run: composer require radebatz/type-info-extras -W
- name: PHPUnit Tests
run: bin/phpunit --configuration phpunit.xml.dist --coverage-text