Skip to content

Update README.md

Update README.md #85

Workflow file for this run

name: Linter
on: [push, pull_request]
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint code base
uses: github/super-linter/slim@v5
env:
VALIDATE_ALL_CODEBASES: false # Only check new/edited files
LOG_LEVEL: NOTICE # Hide all the pointless output
VALIDATE_PHP_PHPCS: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}