Skip to content

fix: 修复 wrapJson 中 json 是字符串的返回问题 #20

fix: 修复 wrapJson 中 json 是字符串的返回问题

fix: 修复 wrapJson 中 json 是字符串的返回问题 #20

Workflow file for this run

name: Tester
on:
push:
branches:
- master
pull_request:
jobs:
PHPUnit:
name: phpunit-php${{ matrix.php-version }}
runs-on: "ubuntu-latest"
strategy:
fail-fast: true
matrix:
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 }}
- name: Install Dependencies
run: composer install --no-progress
- name: Run PHPUnit
run: composer test