Skip to content

Bump phpunit/phpunit from 12.4.5 to 12.5.4 #232

Bump phpunit/phpunit from 12.4.5 to 12.5.4

Bump phpunit/phpunit from 12.4.5 to 12.5.4 #232

Workflow file for this run

name: LeasingNinja in PHP – CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout source code
uses: actions/checkout@v6
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
tools: composer:v2
- name: Install dependencies
run: composer install --no-interaction --no-ansi --no-progress
- name: Run static analysis
run: ./vendor/bin/phpstan analyze --no-interaction --no-ansi --no-progress
- name: Test
run: ./vendor/bin/phpunit --bootstrap vendor/autoload.php tests