Skip to content

fix: document's vector creation #54

fix: document's vector creation

fix: document's vector creation #54

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
name: Code Style
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.3', '8.4' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: /tmp/composer-cache
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
- name: Update composer
run: composer self-update
- name: Install dependencies with composer
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
- name: Run code quality analysis
run: composer app:cs