Skip to content

Commit 46d9c95

Browse files
committed
Add lint-shell Makefile target for shellcheck CI job
1 parent 0591bda commit 46d9c95

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ lint: ## Run ruff linter
3838
lint-fix: ## Run ruff linter with auto-fix
3939
poetry run ruff check --fix leakix/ tests/ example/ executable/
4040

41+
.PHONY: lint-shell
42+
lint-shell: ## Lint shell scripts using shellcheck
43+
shellcheck .github/scripts/*.sh
44+
4145
.PHONY: typecheck
4246
typecheck: ## Run mypy type checker
4347
poetry run mypy leakix/

0 commit comments

Comments
 (0)