sync master #453
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: PHPStorm | |
on: [push] | |
jobs: | |
ide: | |
name: IDE Inspection | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
############################################################################ | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4' | |
tools: composer:v2, prestissimo, pecl | |
coverage: none | |
extensions: ast, bcmath, gd, pdo_mysql, zip, soap | |
- name: Cache composer packages | |
id: composer-cache | |
run: | | |
composer config cache-files-dir | |
echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- uses: actions/cache@v1 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Update project dependencies | |
run: | | |
composer install --prefer-dist --no-progress --no-suggest | |
composer dump-autoload --optimize | |
rm -rf vendor/bin tests | |
rm README.md c3.php | |
############################################################################ | |
- name: Run PHPStorm | |
uses: supercid/action-phpstorm@master | |
with: | |
target: . | |
profile: ./.idea/inspectionProfiles/CI.xml | |
output: ./output | |
verbosity: v2 | |
scope: Inspection | |
- name: Archive inspection results | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: inspection-results | |
path: output |