Skip to content

feat: implement Yii2 HTTP request handler, method executor, and task … #53

feat: implement Yii2 HTTP request handler, method executor, and task …

feat: implement Yii2 HTTP request handler, method executor, and task … #53

Workflow file for this run

name: PHP Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
name: PHP ${{ matrix.php-version }}
steps:
- uses: actions/checkout@v5
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: json, mbstring
coverage: none
- name: Run tests
run: php tests/run-all.php