From 28e2e41ee7eae132ffeb6239b1929e6692a07b7b Mon Sep 17 00:00:00 2001 From: Mohammad Shafiee Date: Mon, 20 Jul 2026 23:30:02 +0200 Subject: [PATCH] chore(ci): wire reusable lint workflow (shellcheck + yamllint) --- .github/workflows/lint.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000..9ba5889 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,14 @@ +name: Lint +on: + push: + branches: [main] + pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + lint: + name: shellcheck + yamllint (reusable) + uses: ZurvanLinux/.github/.github/workflows/lint.yml@main