Skip to content

chore(deps-dev): bump symfony/process from 5.3.7 to 5.4.46 #10

chore(deps-dev): bump symfony/process from 5.3.7 to 5.4.46

chore(deps-dev): bump symfony/process from 5.3.7 to 5.4.46 #10

Workflow file for this run

name: Lint Code Base
on:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Check PHP Version
run: php -v
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-cache
- name: Lint Code Base
uses: github/super-linter/slim@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_PHP_PHPCS: true
VALIDATE_PHP_PHPSTAN: true
# VALIDATE_PHP_PSALM: true
LINTER_RULES_PATH: .github/linters
FILTER_REGEX_EXCLUDE: '(composer.lock)'