Skip to content

pre-commit: put repo: local hooks at bottom #384

pre-commit: put repo: local hooks at bottom

pre-commit: put repo: local hooks at bottom #384

Workflow file for this run

name: Lint
on: [pull_request]
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
permissions:
contents: read # for actions/checkout to fetch code
statuses: write # for github/super-linter/slim to mark status of each linter run
name: Super-Linter
runs-on: ubuntu-latest
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v3
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- uses: github/super-linter/[email protected]
env:
DEFAULT_BRANCH: main
ERROR_ON_MISSING_EXEC_BIT: true
VALIDATE_EDITORCONFIG: true
VALIDATE_ALL_CODEBASE: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}