Skip to content

Set env to dev in ci build #558

Set env to dev in ci build

Set env to dev in ci build #558

Workflow file for this run

name: "Static Analysis"
on: ["push", "pull_request"]
jobs:
code-analysis:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- name: "Setup PHP Action"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.2"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
with:
composer-options: "--prefer-dist --no-progress --no-suggest"
- name: "Run PHPStan"
run: "./vendor/bin/phpstan analyse"