Skip to content

static analysis

static analysis #4046

name: "static analysis"
on:
pull_request: ~
push: ~
schedule:
- cron: '0 */3 * * *'
jobs:
static-analysis:
name: "static analysis"
runs-on: "ubuntu-latest"
steps:
- name: "checkout"
uses: "actions/checkout@v2"
- name: "installing PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.1"
ini-values: memory_limit=-1
tools: composer:v2, cs2pr
extensions: bcmath, mbstring, intl, sodium, json
- name: "installing dependencies"
run: "composer update --no-interaction --no-progress"
- name: "running static analysis ( psalm )"
run: "vendor/bin/psalm --shepherd --stats"