Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

5.0.6

5.0.6 #152

Workflow file for this run

---
#################################
#################################
## GitHub Actions super-linter ##
#################################
#################################
name: Linter
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#########################
# Start the job on push #
#########################
on: [push, pull_request]
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Linter
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: docker://ghcr.io/github/super-linter:slim-v4
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}