Skip to content

+ Add github action, ecs and phpstan #1

+ Add github action, ecs and phpstan

+ Add github action, ecs and phpstan #1

Workflow file for this run

name: Social Bundle code review
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql, zip
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Check for vulnerabilities
uses: symfonycorp/security-checker-action@v4
- name: Run Easy Coding Standard
run: vendor/bin/ecs check src