-
Notifications
You must be signed in to change notification settings - Fork 1k
43 lines (42 loc) · 1.08 KB
/
tester.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
name: Tester
on:
push:
branches:
- master
pull_request:
jobs:
PHPUnit:
name: ${{ matrix.os }}-php${{ matrix.php-version }}-${{ matrix.framework }}
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
framework:
- default
- laravel
- hyperf
php-version:
- 8.1
- 8.2
- 8.3
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: openssl
coverage: none
- name: Laravel Framework
if: matrix.framework == 'laravel'
run: composer require illuminate/container:^8.0
- name: Hyperf Framework
if: matrix.framework == 'hyperf'
run: composer require hyperf/context hyperf/pimple
- name: Other/No Framework
if: matrix.framework == 'default'
run: composer require hyperf/pimple
- name: Run PHPUnit
run: composer test