Skip to content

Merge pull request #287 from feiskyer/dependabot/go_modules/examples/… #153

Merge pull request #287 from feiskyer/dependabot/go_modules/examples/…

Merge pull request #287 from feiskyer/dependabot/go_modules/examples/… #153

Workflow file for this run

---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base
#############################
# Start the job on all push #
#############################
on:
push:
tags:
- v*
branches:
- master
pull_request:
###############
# 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@v4
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_ANSIBLE: false