Sha256: 7d179fcc34c6961786ea63972ce2835e7acde526a2d8e2f691360b8e030853ad

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base

#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#

###################################
# Start the job on a pull request #
###################################
on:
  pull_request

###############
# Set the Job #
###############
jobs:
  super-lint:
    # Set the agent to run on
    runs-on: ubuntu-latest

    ##################
    # Load all steps #
    ##################
    steps:
      ##########################
      # Checkout the code base #
      ##########################
      - name: Checkout Code
        uses: actions/checkout@v3
        with:
          # Full git history is needed to get a proper list of changed files within `super-linter`
          fetch-depth: 0

      ################################
      # Run Linter against code base #
      ################################
      - name: Lint Code Base
        uses: github/super-linter@v4
        env:
          VALIDATE_ALL_CODEBASE: false
          DEFAULT_BRANCH: main

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
whatsup_github-0.5.0 .github/workflows/linter.yml