Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
Christian Joergensen
15c75ccffd Testing 2020-07-12 23:57:09 +02:00
Christian Joergensen
6fde3ceec6 Testing 2020-07-12 23:49:58 +02:00
Christian Joergensen
46e33c52ab Adding linter. 2020-07-12 23:44:33 +02:00

45
.github/workflows/linter.yml vendored Normal file
View file

@ -0,0 +1,45 @@
name: Lint Code Base
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore: [master]
# Remove the line above to run when pushing to master
pull_request:
branches: [master]
###############
# 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
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: docker://github/super-linter:v3
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: master