Skip to content

Github Actions: Add Phpstan #677

Github Actions: Add Phpstan

Github Actions: Add Phpstan #677

Workflow file for this run

name: PHP Tests
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
jobs:
lint:
name: Static analysis for php ${{ matrix.php }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
psalm-version: '5.13.1'
strategy:
fail-fast: false
matrix:
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
os: ['ubuntu-latest']
include:
- php: '7.2'
psalm-version: '4.30'
- php: '7.3'
psalm-version: '4.30'
steps:
- name: Checkout code base
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: phpcs
- name: Setup dependencies
run: composer require -n --no-progress overtrue/phplint vimeo/psalm:${{ matrix.psalm-version || env.psalm-version }}
&& git clone --single-branch -b master https://github.com/Icinga/icingaweb2.git vendor/icingaweb2
&& git clone --single-branch -b master https://github.com/Icinga/icingaweb2-module-director.git vendor/director
&& git clone --single-branch -b snapshot/nightly https://github.com/Icinga/icinga-php-library.git vendor/icinga-php-library
&& git clone --single-branch -b snapshot/nightly https://github.com/Icinga/icinga-php-thirdparty.git vendor/icinga-php-thirdparty
- name: PHP Lint
if: success() || matrix.allow_failure
run: ./vendor/bin/phplint -n --exclude={^vendor/.*} -- .
- name: PHP CodeSniffer
if: success() || matrix.allow_failure
run: phpcs
- name: PHPStan
uses: php-actions/phpstan@v3
if: always()
- name: Psalm
if: always()
run: ./vendor/bin/psalm --output-format=github