Skip to content

Commit

Permalink
Add github linter workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Guirec Lefort committed Dec 15, 2020
1 parent a50173e commit b803402
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint Code Base

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v3
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"MD041": false
}

0 comments on commit b803402

Please sign in to comment.