Skip to content

PHPLARA-249 support automated embedding in vectorSearch #3382

PHPLARA-249 support automated embedding in vectorSearch

PHPLARA-249 support automated embedding in vectorSearch #3382

name: Coding Standards
on:
push:
branches:
- '[0-9]+.[0-9x]+'
pull_request:
branches:
- '[0-9]+.[0-9x]+'
- feature/*
env:
PHP_VERSION: '8.4'
jobs:
phpcs:
name: phpcs
runs-on: ubuntu-22.04
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup PHP with MongoDB extension
uses: ./.github/actions/setup-php
with:
php-version: ${{ env.PHP_VERSION }}
driver: 2
tools: cs2pr
- name: Show driver information
run: php --ri mongodb
- name: Install dependencies with Composer
uses: ramsey/composer-install@4.0.0
with:
composer-options: --no-suggest
- name: Validate PSR class names
run: composer dump-autoload --optimize --strict-psr
# The -q option is required until phpcs v4 is released
- name: Run PHP_CodeSniffer
run: |
mkdir .cache
vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr