Skip to content

chore(ci): add psalm phpunit plugin #65

chore(ci): add psalm phpunit plugin

chore(ci): add psalm phpunit plugin #65

Workflow file for this run

name: πŸš€ CI
on: [ push, pull_request ]
jobs:
ci:
name: "πŸš€ CI"
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
php-version: [ 8.3 ]
steps:
# --------- Setup steps ---------
- name: "πŸ“¦ Checkout"
uses: actions/checkout@v3
- name: "🐘 Setup PHP"
uses: shivammathur/setup-php@v2
with:
coverage: "pcov"
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
extensions: pcov, xdebug
- name: "πŸ“¦ Install dependencies"
uses: ramsey/composer-install@v2
# --------- Run steps ---------
- name: "πŸ§ͺ Run tests"
run: "composer test"
- name: "🧹 PHP CS Fixer"
run: "composer cs-fix"
- name: "πŸ” Psalm"
run: "composer psalm"