Skip to content

chore(deps): update dependency phpstan/phpstan to v1.10.29 #284

chore(deps): update dependency phpstan/phpstan to v1.10.29

chore(deps): update dependency phpstan/phpstan to v1.10.29 #284

Workflow file for this run

name: "Static Analysis"
on:
pull_request:
push:
branches:
- "master"
env:
LIBRDKAFKA_VERSION: v1.7.0
jobs:
static-analysis-phpstan:
name: "Static Analysis with PHPStan"
runs-on: "ubuntu-20.04"
steps:
- name: "Checkout code"
uses: actions/checkout@v3
- name: Install librdkafka
run: |
chmod +x .ci/install_rdkafka.sh
.ci/install_rdkafka.sh
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
coverage: "none"
extensions: "rdkafka"
tools: "cs2pr, pecl"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
- name: "Run a static analysis with phpstan/phpstan"
run: "vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr"
static-analysis-psalm:
name: "Static Analysis with Psalm"
runs-on: "ubuntu-20.04"
steps:
- name: "Checkout code"
uses: actions/checkout@v3
- name: Install librdkafka
run: |
chmod +x .ci/install_rdkafka.sh
.ci/install_rdkafka.sh
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
coverage: "none"
extensions: "rdkafka"
tools: "cs2pr"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v1"
- name: "Run a static analysis with vimeo/psalm"
run: "vendor/bin/psalm --output-format=github --shepherd --taint-analysis --report=results.sarif"
- name: "Upload Security Analysis results to GitHub"
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: results.sarif