Skip to content

Commit

Permalink
Add super-linter workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubKorytko committed Nov 10, 2023
1 parent ed4824c commit d7c50cf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Run Super-Linter

# in quotes to avoid YAMLLint thinking it's a boolean
"on": push

jobs:
super-linter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Lint Code Base
uses: super-linter/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d7c50cf

Please sign in to comment.