Added support for lead_products when saving a lead #18
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: Check linters | |
on: [pull_request] | |
concurrency: | |
group: linters-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-linters: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Run composer install | |
uses: php-actions/composer@v6 | |
with: | |
php_version: 8.1 | |
- name: Run PHP linters | |
run: vendor/bin/phpcs -s -p -n --ignore=*/vendor/* --extensions=php |