From b6b83080345cdc0647a86c3d7330182a5cfaa569 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Sun, 8 Aug 2021 20:35:55 +0200 Subject: [PATCH] Add a workflow --- .github/workflows/lint.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cc535b4..2d11814 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,8 +9,9 @@ on: - master jobs: - lint: + lint-md: runs-on: ubuntu-latest + name: Lint Markdown content steps: - name: Checkout the repository uses: actions/checkout@v2 @@ -19,3 +20,11 @@ jobs: with: config: ./.markdownlint.json args: ./README.md + lint-editorconfig: + runs-on: ubuntu-latest + name: Lint for editorconfig violations + steps: + - name: Checkout the repository + uses: actions/checkout@v2 + - name: Check for editorconfig violations + uses: editorconfig-checker/action-editorconfig-checker@v1