Skip to content

docs: changelog for version 0.3.8 #65

docs: changelog for version 0.3.8

docs: changelog for version 0.3.8 #65

name: "static analysis"
on: ["pull_request", "push"]
jobs:
unit-tests:
name: "static analysis"
runs-on: "ubuntu-latest"
steps:
- name: "checkout"
uses: "actions/checkout@v4"
- name: "installing PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "8.3"
ini-values: memory_limit=-1
tools: composer:v2, phpstan, cs2pr
- name: "installing dependencies"
run: "COMPOSER_ROOT_VERSION=dev-main composer update --no-interaction --no-progress"
env:
COMPOSER_ROOT_VERSION: 'dev-main'
- name: "installing PHPUnit"
run: "php vendor/bin/simple-phpunit install"
- name: "running static analysis (PHPStan)"
run: "phpstan analyse"