Skip to content

Bump pocketmine/pocketmine-mp from 5.8.2 to 5.9.0 #132

Bump pocketmine/pocketmine-mp from 5.8.2 to 5.9.0

Bump pocketmine/pocketmine-mp from 5.8.2 to 5.9.0 #132

Workflow file for this run

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@v4
- name: Download PHP Release
uses: dsaltares/[email protected]
with:
file: Linux.zip
repo: NetherGamesMC/php-build-scripts
version: "tags/8.2-pm5"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Unpack PHP Release
run: unzip Linux.zip && tar -xzvf PHP_Linux-x86_64.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