Split dependencies in dedicated folders using "bamarni/composer-bin-p… #59
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 | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
coverage: none | |
- name: Install dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Lint YAML | |
run: php bin/console lint:yaml .github/workflows --parse-tags | |
- name: Lint Container | |
run: php bin/console lint:container | |
- name: Lint Markdown | |
uses: DavidAnson/markdownlint-cli2-action@v17 | |
- name: Validate Composer | |
run: composer validate --strict |