chore: General "createOrder" cleanup #294
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: | |
- develop | |
- master | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- '**.php' | |
- '!docs/**' | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
name: Testing WooGraphQL code quality w/ PHPStan | |
steps: | |
- name: Cancel previous runs of this workflow (pull requests only) | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: styfle/cancel-workflow-action@0.11.0 | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
cp .env.testing .env | |
rm -rf composer.lock | |
composer install | |
SKIP_DB_CREATE=true SKIP_WP_SETUP=true composer installTestEnv | |
- name: Run PHPStan | |
run: composer stan |