Skip to content

optimize: 使用 is_file 代替字符串结尾判断 #508

optimize: 使用 is_file 代替字符串结尾判断

optimize: 使用 is_file 代替字符串结尾判断 #508

Workflow file for this run

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