Skip to content

PHPLIB-1144: Add unit tests on Explainable::getCommandDocument() #1220

PHPLIB-1144: Add unit tests on Explainable::getCommandDocument()

PHPLIB-1144: Add unit tests on Explainable::getCommandDocument() #1220

name: "Coding Standards"
on:
pull_request:
branches:
- "v*.*"
- "master"
- "feature/*"
paths-ignore:
- "docs/**"
push:
branches:
- "v*.*"
- "master"
- "feature/*"
paths-ignore:
- "docs/**"
jobs:
phpcs:
name: "phpcs"
runs-on: "ubuntu-20.04"
strategy:
matrix:
php-version:
- "7.4"
driver-version:
- "mongodb/mongo-php-driver@master"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: Setup cache environment
id: extcache
uses: shivammathur/cache-extensions@v1
with:
php-version: ${{ matrix.php-version }}
extensions: "mongodb-${{ matrix.driver-version }}"
key: "extcache-v1"
- name: Cache extensions
uses: actions/cache@v3
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-${{ matrix.driver-version }}"
php-version: "${{ matrix.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"