PLGMAG2V2-795: Prepare changes for the 3.8.1 release (#731) #2
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: Magento 2 PHPStan | |
on: [push] | |
jobs: | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
env: | |
COMPOSER_AUTH_JSON: | | |
{ | |
"http-basic": { | |
"repo.magento.com": { | |
"username": "${{ secrets.MAGENTO_MARKETPLACE_USERNAME }}", | |
"password": "${{ secrets.MAGENTO_MARKETPLACE_PASSWORD }}" | |
} | |
} | |
} | |
- uses: actions/checkout@v4 | |
- name: Create composer project | |
run: composer create-project --no-install --no-interaction --no-plugins --repository-url=https://repo-magento-mirror.fooman.co.nz/ magento/project-community-edition:2.4.5-p8 /home/runner/work/magento | |
- name: Add composer plugins | |
working-directory: /home/runner/work/magento | |
run: composer config --no-plugins allow-plugins true | |
- name: Add module to composer | |
working-directory: /home/runner/work/magento | |
run: composer require multisafepay/magento2-core --no-update --no-interaction | |
- name: Install composer dependencies | |
working-directory: /home/runner/work/magento | |
run: composer install --no-interaction | |
- name: Move repository content | |
run: cp -r -f ${{ github.workspace }}/* /home/runner/work/magento/vendor/multisafepay/magento2-core | |
- name: Run PHPStan | |
working-directory: /home/runner/work/magento | |
run: vendor/bin/phpstan analyse -c vendor/multisafepay/magento2-core/phpstan.neon --error-format github |