-
-
Notifications
You must be signed in to change notification settings - Fork 41
52 lines (43 loc) · 1.37 KB
/
parallel-tests.yaml
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
49
50
51
52
name: parallel-tests
on:
push:
branches:
- '*.x'
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: "ubuntu-latest"
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php:
- 8.1
- 8.2
- 8.3
experimental:
- false
name: PHP:${{ matrix.php }} / Paratest:^6.4 ⬆️
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, mysql, mysqli, pdo_mysql, bcmath, intl, fileinfo, :php-psr
coverage: none
- name: Install PHPUnit ^9.5.10
run: |
composer require "phpunit/phpunit:^9.5.10" --no-interaction --no-update
composer require "nunomaduro/collision:^6.2" "brianium/paratest:^6.4" --dev --no-interaction --no-update
- name: Install dependencies
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"
composer-options: "--prefer-dist --no-cache"
- name: Installed dependencies
run: |
composer show -D
- name: Execute tests
run: ./testbench package:test --parallel --exclude-group without-parallel,commander,database,session