Skip to content

commit of failing test for the issue encountered #82

commit of failing test for the issue encountered

commit of failing test for the issue encountered #82

Workflow file for this run

name: Tests
on:
pull_request: ~
push:
branches:
- master
jobs:
test:
name: "PHP ${{ matrix.php }}${{ matrix.allow-failure && ' (allowing failures - php version not supported yet)' || '' }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: apc.enable_cli=1, opcache.enable=1, opcache.enable_cli=1, opcache.jit=tracing, opcache.jit_buffer_size=128M
env:
fail-fast: true
- name: "Run Tests"
run: |
php ./tests/run.php
continue-on-error: "${{ matrix.allow-failure == true }}"