Skip to content

Bump phpunit/phpunit from 10.5.3 to 10.5.5 in /php #18

Bump phpunit/phpunit from 10.5.3 to 10.5.5 in /php

Bump phpunit/phpunit from 10.5.3 to 10.5.5 in /php #18

Workflow file for this run

name: Composer
on:
push:
branches:
- '**'
paths:
- 'php/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Composer
uses: php-actions/composer@v6
env:
COMPOSER: composer.json
with:
php_version: '8.2'
working_dir: .
container_workdir: /app/php
- name: Check Syntax
working-directory: php
run: vendor/bin/parallel-lint --exclude vendor .
- name: PHPUnit Tests
working-directory: php
run: vendor/bin/phpunit tests