Skip to content

fix: implement the runtime cache on preparePost functions. #1051

fix: implement the runtime cache on preparePost functions.

fix: implement the runtime cache on preparePost functions. #1051

Workflow file for this run

name: Test:PHP
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP with composer v2
uses: shivammathur/setup-php@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
- name: Install dependencies
run: composer i
- name: Run tests
run: composer run test