Skip to content

Update composer script command for running all tests #24

Update composer script command for running all tests

Update composer script command for running all tests #24

Workflow file for this run

name: PHP 8.3-8.4 Tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.3, 8.4]
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xml, curl
coverage: pcov
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: composer check:tests