Skip to content

Commit

Permalink
fix(python): add Makefile with lint target
Browse files Browse the repository at this point in the history
Signed-off-by: Artsiom Koltun <[email protected]>
  • Loading branch information
artek-koltun authored and sandersms committed Jan 4, 2024
1 parent 3b8fbb6 commit 8cac150
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2023 Intel Corporation

lint: ## lint the code
poetry run black --check actions
poetry run isort --check actions
poetry run bandit -r actions
poetry run flake8 actions

0 comments on commit 8cac150

Please sign in to comment.