2021-02-26 15:40:21 -05:00
|
|
|
---
|
|
|
|
#################################
|
|
|
|
#################################
|
|
|
|
## Super Linter GitHub Actions ##
|
|
|
|
#################################
|
|
|
|
#################################
|
|
|
|
name: Lint Code Base
|
|
|
|
|
|
|
|
#
|
|
|
|
# Documentation:
|
2021-12-08 15:28:01 -05:00
|
|
|
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
|
2021-02-26 15:40:21 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
#############################
|
|
|
|
# Start the job on all push #
|
|
|
|
#############################
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore: [master, main]
|
|
|
|
# Remove the line above to run when pushing to master
|
|
|
|
pull_request:
|
|
|
|
branches: [master, main]
|
|
|
|
|
|
|
|
###############
|
|
|
|
# Set the Job #
|
|
|
|
###############
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# Name the Job
|
|
|
|
name: Lint Code Base
|
|
|
|
# Set the agent to run on
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
##################
|
|
|
|
# Load all steps #
|
|
|
|
##################
|
|
|
|
steps:
|
|
|
|
##########################
|
|
|
|
# Checkout the code base #
|
|
|
|
##########################
|
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
2022-09-24 03:42:41 -04:00
|
|
|
# Full git history is needed to get a proper
|
|
|
|
# list of changed files within `super-linter`
|
2021-02-26 15:40:21 -05:00
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
################################
|
|
|
|
# Run Linter against code base #
|
|
|
|
################################
|
|
|
|
- name: Lint Code Base
|
2021-05-26 17:50:06 -04:00
|
|
|
uses: github/super-linter@v4
|
2021-02-26 15:40:21 -05:00
|
|
|
env:
|
|
|
|
VALIDATE_ALL_CODEBASE: false
|
2021-11-10 12:53:21 -05:00
|
|
|
# Change to 'master' if your main branch differs
|
|
|
|
DEFAULT_BRANCH: main
|
2021-02-26 15:40:21 -05:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|