Exclude Composer's autoloader #32
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: Code Quality | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build on PHP ${{ matrix.php }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '7.3', '7.4', '8.0', '8.1', '8.2' ] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: composer:v2, wp-cli | |
coverage: none | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Run before install | |
run: | | |
composer validate --strict | |
- name: Install dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
composer-options: "--no-progress" | |
dependency-versions: "highest" | |
- name: Install WPGraphQL dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
composer-options: "--no-progress" | |
dependency-versions: "highest" | |
working-directory: ./source | |
- name: Generate stubfile | |
run: | | |
bash -x ./generate.sh | |
- name: Lint stubfile | |
run: | | |
php -l wp-graphql-stubs.php | |
- name: Run PHPStan | |
run: | | |
vendor/bin/phpstan | |
- name: Check for changes | |
run: | | |
git diff --exit-code |