Don't test PM4 on 8.3 #41
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: PHPStan analysis (PM ${{ matrix.constraint }}${{ matrix.pm }}, PHP ${{ matrix.php }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
pm: | |
- 4.0.0 | |
- 5.0.0 | |
constraint: | |
- "" #exact version, e.g. 4.0.0, 5.0.0 | |
- "^" #most recent patch version, e.g. 4.21.1, 5.0.0 | |
exclude: | |
- php: "8.3" | |
pm: 4.0.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get PocketMine-MP major version | |
id: major | |
run: echo PM_VERSION_MAJOR=$(echo ${{ matrix.pm }} | cut -d. -f1) >> $GITHUB_OUTPUT | |
- name: Setup PHP | |
uses: pmmp/[email protected] | |
with: | |
php-version: ${{ matrix.php }} | |
install-path: "./bin" | |
pm-version-major: ${{ steps.major.outputs.PM_VERSION_MAJOR }} | |
- name: Restore Composer package cache | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: "~/.cache/composer" | |
key: "php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}" | |
restore-keys: "php-${{ matrix.php }}-composer-" | |
- name: Install PHPStan Composer dependencies | |
working-directory: ./phpstan | |
run: composer update --with pocketmine/pocketmine-mp:${{ matrix.constraint }}${{ matrix.pm }} --prefer-dist --no-interaction | |
- name: Run PHPStan | |
working-directory: ./phpstan | |
run: vendor/bin/phpstan analyze |