Remove usage of deprecated ReadPreference::RP_*
constants
#1530
Workflow file for this run
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: "Static Analysis" | |
on: | |
pull_request: | |
branches: | |
- "*.x" | |
- "feature/*" | |
push: | |
jobs: | |
static-analysis-phpstan: | |
name: "Static Analysis with PHPStan" | |
runs-on: "ubuntu-22.04" | |
strategy: | |
matrix: | |
php-version: | |
- "8.2" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: Setup cache environment | |
id: extcache | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: "mongodb-${{ matrix.driver-version }}, bcmath" | |
key: "extcache-v1" | |
- name: Cache extensions | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.extcache.outputs.dir }} | |
key: ${{ steps.extcache.outputs.key }} | |
restore-keys: ${{ steps.extcache.outputs.key }} | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "mongodb, bcmath" | |
php-version: "${{ matrix.php-version }}" | |
- name: "Show driver information" | |
run: "php --ri mongodb" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v3" | |
- name: "Upload composer.lock as build artifact" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "composer-lock-static-analysis-phpstan" | |
path: composer.lock | |
overwrite: true | |
- name: "Run a static analysis with phpstan/phpstan" | |
run: "vendor/bin/phpstan analyse --error-format=github" | |
static-analysis-psalm: | |
name: "Static Analysis with Psalm" | |
runs-on: "ubuntu-22.04" | |
strategy: | |
matrix: | |
php-version: | |
- "8.2" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "mongodb" | |
php-version: "${{ matrix.php-version }}" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v3" | |
- name: "Upload composer.lock as build artifact" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "composer-lock-static-analysis-psalm" | |
path: composer.lock | |
overwrite: true | |
- name: "Run a static analysis with vimeo/psalm" | |
run: "vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc)" |