Skip to content

Update CHANGELOG

Update CHANGELOG #117

Workflow file for this run

name: analyse
on:
push:
branches: [ 'main' ]
pull_request:
workflow_dispatch:
jobs:
analyse:
name: "Static analysis (PHP ${{ matrix.php-version }})"
runs-on: "ubuntu-22.04"
continue-on-error: true
strategy:
matrix:
php-version: [ "8.1" ]
env:
COMPOSER_VERSION: 2
COVERAGE_DRIVER: none
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: ${{ env.COVERAGE_DRIVER }}
tools: composer:${{ env.COMPOSER_VERSION }}
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Execute type checking
run: php vendor/bin/phpstan