Skip to content

feat: startsWith 函数支持传递 int 类型 (#27) #28

feat: startsWith 函数支持传递 int 类型 (#27)

feat: startsWith 函数支持传递 int 类型 (#27) #28

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