Skip to content

tweak: recommend diff lsp ext #7

tweak: recommend diff lsp ext

tweak: recommend diff lsp ext #7

Workflow file for this run

name: CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.2', '8.3', '8.4']
name: PHP ${{ matrix.php-versions }} Test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: composer:v2, phpunit:v9
- name: Install Dependencies
run: composer install
- name: PHPStan Static Analysis
run: vendor/bin/phpstan analyze --memory-limit=256M
- name: PHPUnit Tests
run: vendor/bin/phpunit