mirror of
https://github.com/Seldaek/monolog.git
synced 2025-09-03 01:52:33 +02:00
Bumps [ramsey/composer-install](https://github.com/ramsey/composer-install) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/ramsey/composer-install/releases)
- [Commits](a2636af000...3cf229dc29
)
---
updated-dependencies:
- dependency-name: ramsey/composer-install
dependency-version: 3.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
43 lines
943 B
YAML
43 lines
943 B
YAML
name: "PHPStan"
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
COMPOSER_ROOT_VERSION: dev-main
|
|
|
|
jobs:
|
|
tests:
|
|
name: "PHPStan"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
php-version:
|
|
- "8.1"
|
|
- latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
- uses: shivammathur/setup-php@9e72090525849c5e82e596468b86eb55e9cc5401 # 2.32.0
|
|
with:
|
|
php-version: "${{ matrix.php-version }}"
|
|
coverage: none
|
|
extensions: mongodb, redis, amqp
|
|
|
|
- name: Add require for mongodb/mongodb to make tests runnable
|
|
run: "composer require ${{ env.COMPOSER_FLAGS }} mongodb/mongodb --dev --no-update"
|
|
|
|
- uses: ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520 # 3.1.1
|
|
with:
|
|
dependency-versions: highest
|
|
|
|
- name: Run PHPStan
|
|
run: composer phpstan
|