Clean unnecessary code #2
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 CI | |
on: push | |
jobs: | |
phpstan: | |
name: PHPStan Analysis | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Startup | |
uses: actions/checkout@v3 | |
- name: Download PHP Release | |
uses: dsaltares/fetch-gh-release-asset@1.1.0 | |
with: | |
file: PHP-Linux-x86_64-PM5.tar.gz | |
repo: pmmp/PHP-Binaries | |
version: "tags/php-8.2-latest" | |
- name: Unpack PHP Release | |
run: tar -xzvf PHP-Linux-x86_64-PM5.tar.gz | |
- name: Download Composer | |
run: curl -o composer.phar "https://getcomposer.org/composer-stable.phar" | |
- name: Install Composer dependencies | |
run: ./bin/php7/bin/php composer.phar install --prefer-dist --no-interaction | |
- name: Run PHPStan | |
run: ./bin/php7/bin/php vendor/bin/phpstan.phar analyze --no-progress |