Skip to content

Removes changelog

Removes changelog #642

Workflow file for this run

name: Static Analysis
on: ['push', 'pull_request']
jobs:
phpstan:
runs-on: ubuntu-latest
name: Static
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer
coverage: none
- name: Install Dependencies
run: composer update --no-interaction --prefer-dist --no-progress --ansi
- name: Run Style Tests
run: composer test:lint
- name: Run Types Tests
run: composer test:types