Skip to content

fix(insured person): Не удаляется застрахованное лицо, если оказанных… #4

fix(insured person): Не удаляется застрахованное лицо, если оказанных…

fix(insured person): Не удаляется застрахованное лицо, если оказанных… #4

# Name of workflow
name: type static analysis
# Trigger the workflow on push or pull request
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
# The type of machine to run the job on
runs-on: ubuntu-latest
steps:
# Check-out repository under GitHub workspace
# https://github.com/actions/checkout
- uses: actions/checkout@v4
# Step's name
- name: Setup PHP
# Action gives to setup the PHP environment to test application
# https://github.com/shivammathur/setup-php
uses: shivammathur/setup-php@v2
with:
# Specify the PHP version
php-version: '8.3'
- name: Install
# Install deps
run: composer install
- name: Run type static analysis
run: vendor/bin/psalm --output-format=github --shepherd --stats