Skip to content

Update changelog

Update changelog #20

Workflow file for this run

name: Keep A Changelog
on: [ push ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1' ]
name: PHP ${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: |
vendor/bin/phpunit
- name: Execute static analysis
run: |
vendor/bin/phpstan
- name: Execute static analysis
run: |
vendor/bin/pint --test