Skip to content

Refactor code structure for improved readability and maintainability #25

Refactor code structure for improved readability and maintainability

Refactor code structure for improved readability and maintainability #25

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
name: PHP 8.3 Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: ffi
coverage: none
- name: Update dependencies for PHP 8.3
run: composer update --no-interaction --prefer-dist
- name: Run test suite
run: composer test