Update and bump minimum required version from loophp/collection #69
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: "Continuous Integration" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "*.*.x" | |
- "master" | |
jobs: | |
# phpunit: | |
# name: "PHPUnit tests" | |
# | |
# runs-on: ${{ matrix.operating-system }} | |
# | |
# strategy: | |
# matrix: | |
# dependencies: | |
# - "lowest" | |
# - "highest" | |
# - "locked" | |
# php-version: | |
# - "8.1" | |
# - "8.2" | |
# operating-system: | |
# - "ubuntu-latest" | |
# - "windows-latest" | |
# | |
# steps: | |
# - name: "Checkout" | |
# uses: "actions/checkout@v4.1.1" | |
# | |
# - name: "Install PHP" | |
# uses: "shivammathur/setup-php@2.30.0" | |
# with: | |
# coverage: "none" | |
# php-version: "${{ matrix.php-version }}" | |
# ini-values: memory_limit=-1 | |
# | |
# - name: "Install dependencies" | |
# uses: "ramsey/composer-install@2.2.0" | |
# with: | |
# dependency-versions: "${{ matrix.dependencies }}" | |
# | |
# - name: "Run tests" | |
# run: "vendor/bin/phpunit" | |
static-analysis-phpstan: | |
name: "Static Analysis by PHPStan" | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
dependencies: | |
- "locked" | |
php-version: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
- "8.4" | |
operating-system: | |
- "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4.1.1" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@2.30.0" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: memory_limit=-1 | |
- name: "Install dependencies" | |
uses: "ramsey/composer-install@3.0.0" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "PHPStan" | |
run: "vendor/bin/phpstan analyse --memory-limit=-1" | |
lint: | |
name: "Lint" | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
dependencies: | |
- "locked" | |
php-version: | |
- "8.1" | |
operating-system: | |
- "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4.1.1" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@2.30.0" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: memory_limit=-1 | |
- name: "Install dependencies" | |
uses: "ramsey/composer-install@3.0.0" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "Lint & validate composer.json" | |
run: "composer validate && composer normalize" | |
- name: "Check coding style" | |
run: "vendor/bin/php-cs-fixer fix" | |
- name: "Check architectural rules" | |
run: "vendor/bin/phparkitect check" |