added super linter

This commit is contained in:
ECJ222 2021-01-16 09:13:55 +01:00
parent 46b4340f3e
commit 1eaecd7839

25
.github/workflows/linter.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Lint Awesome Actions
on:
push:
branches-ignore: [master]
pull_request:
branches: [master]
jobs:
build:
name: Lint Awesome Actions
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Lint Awesome Actions
uses: github/super-linter@v3
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}