Skip to content

New Plugins and Themes tables built from AspireSync data #129

New Plugins and Themes tables built from AspireSync data

New Plugins and Themes tables built from AspireSync data #129

Workflow file for this run

name: Commit Pipeline
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install Composer dependencies
run: composer install
- name: Create .env file
run: cp .env.example .env
- name: Create App Key
run: php artisan key:generate
- name: Run tests
run: |
vendor/bin/php-cs-fixer check
vendor/bin/phpstan --memory-limit=1G analyse
php artisan test tests/Unit