forked from php-vcr/phpunit-testlistener-vcr
-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (37 loc) · 1.16 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
40
41
42
43
44
45
name: CI Tests
on:
pull_request:
push:
branches:
- master
- v*
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
stability: [prefer-stable]
versions: [
{ php: 8.1, phpunit: 10 }, { php: 8.2, phpunit: 10 }, { php: 8.3, phpunit: 10 },
{ php: 8.2, phpunit: 11 }, { php: 8.3, phpunit: 11 }
]
name: PHP ${{ matrix.versions.php }} - PHPUnit ${{ matrix.versions.phpunit }}
steps:
- name: Checkout code
uses: actions/checkout@v4
# Docs: https://github.com/shivammathur/setup-php
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.versions.php }}
extensions: dom, curl, libxml, mbstring, zip
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install dependencies
run: |
composer require "phpunit/phpunit=^${{ matrix.versions.phpunit }}" --no-update
composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader
- name: Run phpunit tests
run: composer test