Use fooman mirror for Magento and rename analyse workflow #9
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: PHPStan | |
on: ['push', 'pull_request'] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: analyse | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Repository Credentials | |
run: composer config repositories.foomanmirror composer repo-magento-mirror.fooman.co.nz | |
- name: Install dependencies | |
run: composer install --no-interaction | |
- name: Analyse | |
run: vendor/bin/phpstan analyse |