From c7a769e5da9ce7253e58a321e2fd7e0da1ba8cf3 Mon Sep 17 00:00:00 2001 From: Minijackson Date: Tue, 7 Mar 2023 16:55:29 +0000 Subject: [PATCH] editorconfig: add workflow to check if config is upheld --- .github/workflows/check-editorconfig.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/check-editorconfig.yml diff --git a/.github/workflows/check-editorconfig.yml b/.github/workflows/check-editorconfig.yml new file mode 100644 index 000000000..07f6d6c94 --- /dev/null +++ b/.github/workflows/check-editorconfig.yml @@ -0,0 +1,13 @@ +name: Check EditorConfig + +on: + push: + pull_request: + +jobs: + editorconfig: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: EditorConfig-Action + uses: greut/eclint-action@v0