Skip to content

ADS-4284 Implement rating filter #36

ADS-4284 Implement rating filter

ADS-4284 Implement rating filter #36

Workflow file for this run

name: Lint PHP
on:
push:
branches:
- main
- develop
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: PHPLint
steps:
- uses: actions/checkout@v2
with:
path: nosto-shopware6
- name: Clone job scheduler repo
uses: actions/checkout@v2
with:
repository: Nosto/shopware6-job-scheduler
path: nosto-shopware6/dependencies/shopware6-job-scheduler
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Setup PHP with Composer 2
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: dom, gd, mbstring, pdo_mysql, zip
coverage: xdebug
tools: composer:v2
- name: Validate dependencies
working-directory: nosto-shopware6
run: composer validate
- name: Install plugin dependencies
working-directory: nosto-shopware6
run: composer install --no-interaction
- name: Run PHPLint
working-directory: nosto-shopware6
run: composer run lint