Skip to content

Fix common generation #479

Fix common generation

Fix common generation #479

Workflow file for this run

name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
on:
workflow_dispatch:
push:
branches-ignore:
- "master"
pull_request:
branches:
- "master"
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Lint Code Base
uses: super-linter/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: false
FILTER_REGEX_EXCLUDE: .github/*
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}