From ecb50510fe2081e86cdff81e7b3c4685b8f9e148 Mon Sep 17 00:00:00 2001 From: mueller-ma Date: Sun, 14 Apr 2024 15:00:39 +0200 Subject: [PATCH] Run super linter in CI It uses ktlint for Kotlin. See #3640 Signed-off-by: mueller-ma --- .github/workflows/lint.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000000..86628b103c1 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,26 @@ +name: Run super-linter + +on: + push: + branches-ignore: + - l10n_main + - dependabot/* + pull_request: + branches-ignore: + - l10n_main + +permissions: + contents: read + + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Lint Code Base + uses: github/super-linter@v6