Skip to content

feat: Revise hero section and feature details for clarity and alignme… #145

feat: Revise hero section and feature details for clarity and alignme…

feat: Revise hero section and feature details for clarity and alignme… #145

Workflow file for this run

name: Security
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
schedule:
- cron: '0 2 * * 1' # Weekly on Monday at 2 AM
jobs:
security-audit:
runs-on: ubuntu-latest
timeout-minutes: 10
name: Security Audit
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: curl, mbstring, json, openssl
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: Run security audit
run: composer audit
static-analysis:
runs-on: ubuntu-latest
timeout-minutes: 10
name: Static Analysis
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: curl, mbstring, json, openssl
coverage: none
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: Run PHPStan analysis
run: composer analyse