Bump phpunit/phpunit from 11.5.1 to 11.5.2 in /php #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |