fix: 修复微信 App 支付参数异常问题 #468
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Coverage | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
coverage: | |
name: Code Coverage | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: openssl | |
coverage: xdebug | |
- name: Install Dependencies | |
run: composer require hyperf/pimple | |
- name: Run Coverage | |
run: vendor/bin/phpunit --coverage-clover coverage.xml | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |