Skip to content

Commit c864d89

Browse files
committed
创建 php-test.yml
1 parent 5fcbd3c commit c864d89

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/php-test.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
name: PHP Unit Tests across Multiple Versions
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
branches:
10+
- main
11+
12+
jobs:
13+
test:
14+
strategy:
15+
matrix:
16+
php-version: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2] # 指定要测试的PHP版本
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout Code
21+
uses: actions/checkout@v3
22+
23+
- name: Setup PHP
24+
uses: shivammathur/setup-php@v2
25+
with:
26+
php-version: ${{ matrix.php-version }}
27+
tools: composer:v2
28+
coverage: none # 如果不需要覆盖率报告可以设置为none
29+
30+
- name: Install Dependencies
31+
run: composer install --prefer-dist --no-interaction --no-progress --no-suggest
32+
33+
- name: Run PHPUnit Tests
34+
run: vendor/bin/phpunit
35+
env:
36+
CI: true
37+
38+
- name: Upload Test Results (if failure)
39+
if: failure()
40+
uses: actions/upload-artifact@v3
41+
with:
42+
name: test-results-${{ matrix.php-version }}
43+
path: build/logs # 假设你的测试结果存储在build/logs目录下

0 commit comments

Comments
 (0)