diff options
Diffstat (limited to '.github/workflows/super-linter.yml')
| -rw-r--r-- | .github/workflows/super-linter.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml new file mode 100644 index 000000000..884f705d5 --- /dev/null +++ b/.github/workflows/super-linter.yml @@ -0,0 +1,23 @@ +name: Super Linter + +on: + push: + branches-ignore: [master] + # Remove the line above to run when pushing to master + pull_request: + branches: [master] + +jobs: + build: + name: Lint Code Base + runs-on: ubuntu-latest + steps: + - uses: actions/[email protected] + - uses: github/[email protected] + env: + ERROR_ON_MISSING_EXEC_BIT: true + VALIDATE_BASH: true + # VALIDATE_BASH_EXEC: true + # VALIDATE_EDITORCONFIG: true + # VALIDATE_SHELL_SHFMT: true + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
