Trigger linter on pull requests and pushes to master

This commit is contained in:
Roland
2020-06-22 16:49:56 +02:00
parent 7dd1fe8608
commit 5ab189629a

View File

@@ -10,13 +10,17 @@ name: Lint Code Base
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
################################################
# Trigger the workflow on push or pull request #
# but only for the master branch #
################################################
on:
push:
branches-ignore:
- 'master'
branches:
- master
pull_request:
branches:
- master
###############
# Set the Job #