From c864d89eb7f0bbd181b7139ac5c60c0b921bc7c8 Mon Sep 17 00:00:00 2001 From: icret <16373024+icret@users.noreply.github.com> Date: Tue, 7 May 2024 14:02:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=20php-test.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/php-test.yml | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/php-test.yml diff --git a/.github/workflows/php-test.yml b/.github/workflows/php-test.yml new file mode 100644 index 0000000..761d514 --- /dev/null +++ b/.github/workflows/php-test.yml @@ -0,0 +1,43 @@ + +name: PHP Unit Tests across Multiple Versions + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test: + strategy: + matrix: + php-version: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, 8.2] # 指定要测试的PHP版本 + runs-on: ubuntu-latest + + steps: + - name: Checkout Code + uses: actions/checkout@v3 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-version }} + tools: composer:v2 + coverage: none # 如果不需要覆盖率报告可以设置为none + + - name: Install Dependencies + run: composer install --prefer-dist --no-interaction --no-progress --no-suggest + + - name: Run PHPUnit Tests + run: vendor/bin/phpunit + env: + CI: true + + - name: Upload Test Results (if failure) + if: failure() + uses: actions/upload-artifact@v3 + with: + name: test-results-${{ matrix.php-version }} + path: build/logs # 假设你的测试结果存储在build/logs目录下 \ No newline at end of file