Skip to content

EC-CUBE4.3対応

EC-CUBE4.3対応 #32

Workflow file for this run

name: PHPStan
on: [workflow_dispatch, pull_request]
env:
PLUGIN_CODE: Auth0
PLUGIN_BRANCH: '4.2'
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
eccube-versions: ['4.2', '4.3']
php-versions: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]
exclude:
- eccube-versions: 4.2
php-versions: 8.2
- eccube-versions: 4.2
php-versions: 8.3
- eccube-versions: 4.3
php-versions: 7.4
- eccube-versions: 4.3
php-versions: 8.0
steps:
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@master #https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, xml, ctype, iconv, mysql, intl, :xdebug
tools: composer:v2
- name: Checkout EC-CUBE
uses: actions/checkout@v4
with:
repository: EC-CUBE/ec-cube
ref: ${{ matrix.eccube-versions }}
path: ${{ env.WORKING_DIRECTORY }}
- name: Initialize Composer
uses: ./.github/actions/composer
- name: Checkout
uses: actions/checkout@v3
working-directory: ${{ env.WORKING_DIRECTORY }}

Check failure on line 45 in .github/workflows/phpstan.yaml

View workflow run for this annotation

GitHub Actions / PHPStan

Invalid workflow file

The workflow is not valid. .github/workflows/phpstan.yaml (Line: 45, Col: 9): Unexpected value 'working-directory'
with:
path: app/Plugin/${{ env.PLUGIN_CODE }}
ref: ${{ github.event.pull_request.head.sha }}
- name: PHPStan
working-directory: ${{ env.WORKING_DIRECTORY }}
run: |
composer require phpstan/phpstan --dev
./vendor/bin/phpstan analyze app/Plugin/${{ env.PLUGIN_CODE }} -c "app/Plugin/${{ env.PLUGIN_CODE }}/phpstan.neon" --error-format=github