Skip to content

Create SECURITY.md

Create SECURITY.md #22

Workflow file for this run

name: "Continuous Integration"
on:
push:
branches:
- "main"
tags:
- "*"
pull_request:
branches:
- "main"
jobs:
testing:
name: "Testing"
runs-on: "ubuntu-latest"
strategy:
matrix:
php: ['8.2', '8.3']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- run: "composer install --no-interaction"
- run: "vendor/bin/php-cs-fixer fix --dry-run -v"
- run: "vendor/bin/phpstan analyse"
- run: "vendor/bin/phpunit tests"