Remove redundant caching #34
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: Validate Composer configuration | |
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 |