Skip to content

[11.3] UUID7. IdentifierFactoryServiceInterface #1439

[11.3] UUID7. IdentifierFactoryServiceInterface

[11.3] UUID7. IdentifierFactoryServiceInterface #1439

Workflow file for this run

name: phpstan
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: bcmath
env:
runner: self-hosted
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run phpstan
run: composer phpstan