#58 - Registry docblocks collection return types #16
Workflow file for this run
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
# Workflow name | |
name: PHP Unit Tests | |
# Triggers | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'v3.7-dev' | |
- 'v5-dev' | |
pull_request: | |
branches: | |
- 'main' | |
- 'v3.7-dev' | |
- 'v5-dev' | |
# Jobs/Pipelines | |
jobs: | |
php-unit: | |
name: 'PHP Unit' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ 8.1, 8.2, 8.3 ] | |
steps: | |
- name: 'Checkout Code' | |
uses: actions/checkout@v4 | |
- name: "Setup PHP with tools" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
tools: composer | |
- name: "Get composer cache directory" | |
id: composer-cache | |
run: 'echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT' | |
- name: "Cache dependencies" | |
uses: actions/cache@v4 | |
with: | |
path: "${{ steps.composer-cache.outputs.dir }}" | |
key: "${{ runner.os }}-php-${{ matrix.php}}-composer-${{ hashFiles('**/composer.json') }}" | |
restore-keys: "${{ runner.os }}-php-${{ matrix.php}}-composer-" | |
- name: 'Install Dependencies via Composer' | |
run: composer install --no-ansi --no-interaction --no-progress --no-scripts --prefer-dist | |
- name: 'Run PHPUnit' | |
run: ./vendor/bin/phpunit |