Skip to content

fix branch

fix branch #1

Workflow file for this run

# Sample workflow for validating and linting PHP code with PHPStan
#
# See https://github.com/phpstan/phpstan
#
name: PHPStan
on:
push:
branches:
- Feature/*
jobs:
phpstan:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3 # Puedes ajustar la versión de PHP según tus necesidades
- name: Install dependencies
run: composer install
- name: Run PHPStan
run: composer phpstan