Run super-linter in all branches

Use the same trigger as in the rest of jobs.

Before submitting a PR, commit is pushed to a private branch where
the jobs are executed. Super-linter should be executed in these
jobs as well to get signal about linting issue before submitting a
PR, to reduce noise to PR reviewers.
This commit is contained in:
Stiopa Koltsov 2021-02-03 02:38:26 +00:00 committed by G. Allais
parent 5720d1c691
commit cffade6bf8

View File

@ -11,15 +11,15 @@ name: Lint Code Base
# 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
branches:
- '*'
tags:
- '*'
pull_request:
branches: [master]
branches:
- master
###############
# Set the Job #