Skip to content

Better merging of collection types for 2.x (#43) #1

Better merging of collection types for 2.x (#43)

Better merging of collection types for 2.x (#43) #1

Workflow file for this run

name: Static
on:
push:
branches:
- '*.x'
tags:
- '[0-9].[0-9]+'
pull_request:
jobs:
phpstan:
name: "PHPStan"
runs-on: ubuntu-latest
steps:
- name: Check out code into the workspace
uses: actions/checkout@v3
- name: Setup PHP 8.2
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- name: Composer cache
uses: actions/cache@v3
with:
path: ${{ env.HOME }}/.composer/cache
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
run: composer update --prefer-dist --no-interaction
- name: PHPStan
run: composer phpstan-all
cs:
name: "CS Fixer"
runs-on: ubuntu-latest
steps:
- name: Check out code into the workspace
uses: actions/checkout@v3
- name: Setup PHP 8.2
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- name: Validate composer.json
run: composer validate --strict --no-check-lock
- name: Composer cache
uses: actions/cache@v3
with:
path: ${{ env.HOME }}/.composer/cache
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
run: composer update --prefer-dist --no-interaction
- name: CS Fixer
run: composer cs-fixer