Skip to content

fix: Correctly interpret database value timezone as UTC if the defau… #224

fix: Correctly interpret database value timezone as UTC if the defau…

fix: Correctly interpret database value timezone as UTC if the defau… #224

Workflow file for this run

name: "Static Analysis"
on:
pull_request:
push:
branches:
- "master"
jobs:
static-analysis-phpstan:
name: "Static Analysis with PHPStan"
runs-on: "ubuntu-24.04"
steps:
- name: "Checkout code"
uses: actions/checkout@v7
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.4"
coverage: "none"
extensions: "json, mbstring"
tools: "cs2pr"
- name: "Install dependencies with Composer"
uses: "ramsey/[email protected]"
- name: "Run a static analysis with phpstan/phpstan"
run: "vendor/bin/phpstan --error-format=checkstyle | cs2pr"