ADS-4193 Implement search #13
Workflow file for this run
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: 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 |