chore: Bump the all-dependencies group with 2 updates #3
Workflow file for this run
This file contains hidden or 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: Run lint and tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- ready_for_review | |
workflow_dispatch: | |
env: | |
PHP_VERSION: 8.3 | |
PHP_EXTENSIONS: mbstring | |
PHP_TOOLS: composer:v2, phpunit:11 | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
run-tests: | |
if: ${{ !github.event.pull_request.draft }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install PHP ${{ env.PHP_VERSION }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: none | |
php-version: ${{ env.PHP_VERSION }} | |
extensions: ${{ env.PHP_EXTENSIONS }} | |
tools: ${{ env.PHP_TOOLS }} | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Restore cache folder | |
uses: actions/cache@v4 | |
with: | |
path: cache/ | |
key: ${{ runner.os }}-cache-folder-${{ hashFiles('cache/**') }} | |
restore-keys: | | |
${{ runner.os }}-cache-folder- | |
- name: Install dependencies | |
run: composer update --no-interaction --no-progress | |
- name: Static analysis | |
run: composer phpstan | |
- name: PHP Coding Standards Fixer | |
run: composer format:check | |
- name: Run PHPUnit | |
run: composer phpunit |