PHPLIB-1363 PHPLIB-1355 Add enum for $type
query and $meta
expression
#228
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: "Coding Standards" | |
on: | |
pull_request: | |
branches: | |
- "[0-9]+.[0-9]+" | |
- "feature/*" | |
paths-ignore: | |
- "docs/**" | |
push: | |
branches: | |
- "[0-9]+.[0-9]+" | |
- "feature/*" | |
paths-ignore: | |
- "docs/**" | |
env: | |
PHP_VERSION: "8.2" | |
DRIVER_VERSION: "mongodb/mongo-php-driver@master" | |
jobs: | |
phpcs: | |
name: "phpcs" | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: Setup cache environment | |
id: extcache | |
uses: shivammathur/cache-extensions@v1 | |
with: | |
php-version: ${{ env.PHP_VERSION }} | |
extensions: "mongodb-${{ env.DRIVER_VERSION }}" | |
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-${{ env.DRIVER_VERSION }}" | |
php-version: "${{ env.PHP_VERSION }}" | |
tools: "cs2pr" | |
- name: "Show driver information" | |
run: "php --ri mongodb" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@2.2.0" | |
with: | |
composer-options: "--no-suggest" | |
# The -q option is required until phpcs v4 is released | |
- name: "Run PHP_CodeSniffer" | |
run: "vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr" |