Skip to content

updating gha to run test on pr #39

updating gha to run test on pr

updating gha to run test on pr #39

Workflow file for this run

name: PHP
on:
pull_request:
branches:
- v3
push:
branches:
- v3
jobs:
run:
runs-on: "ubuntu-latest"
strategy:
matrix:
php-versions: ["8.2", "8.3", "8.4", "8.5"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl
ini-values: post_max_size=256M, max_execution_time=180
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
- name: Validate Composer
run: composer validate
- name: Install Composer Deps
run: composer install
- name: Run Tests
run: composer test