Skip to content

Add Purchase Management System #8

Add Purchase Management System

Add Purchase Management System #8

Workflow file for this run

name: Static Analysis
on: [ push, pull_request ]
jobs:
tests:
name: Run Larastan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: none
- name: Run composer install
run: composer install -n --prefer-dist
- name: Prepare Laravel Application
run: |
cp .env.example .env
php artisan key:generate
- name: Run Larastan
run: ./vendor/bin/phpstan analyse