Skip to content

Bump phpunit/phpunit from 11.5.0 to 11.5.1 in /php #103

Bump phpunit/phpunit from 11.5.0 to 11.5.1 in /php

Bump phpunit/phpunit from 11.5.0 to 11.5.1 in /php #103

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 PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
- name: Set up Composer
uses: php-actions/composer@v6
env:
COMPOSER: composer.json
with:
php_version: '8.3'
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