Skip to content

Add logging to Hub on update publish #234

Add logging to Hub on update publish

Add logging to Hub on update publish #234

Workflow file for this run

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 update --no-interaction --no-progress --no-suggest"
- name: "installing PHPUnit"
run: "php vendor/bin/simple-phpunit install"
- name: "running static analysis (PHPStan)"
run: "phpstan analyse"