Skip to content

👷 ci(security): add a job to run composer audit #1

👷 ci(security): add a job to run composer audit

👷 ci(security): add a job to run composer audit #1

Workflow file for this run

name: Security
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
composer_audit:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ 8.3 ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist
- name: Composer audit
run: composer audit