From 5e394ad7a66f2afd9d79921424b8f76534f5b4d6 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 14 May 2021 11:10:14 +0300 Subject: Implement Github action CI workflow (#4) * Add pylint dependency * Add initial pylintrc and scripts * Cleanup lints * Initial CI workflow * Skip tests for now --- Pipfile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Pipfile') diff --git a/Pipfile b/Pipfile index b1f1e02..be98520 100644 --- a/Pipfile +++ b/Pipfile @@ -10,6 +10,11 @@ click = "*" [dev-packages] pytest = "*" black = "==21.5b1" +pylint = "*" [scripts] alarmpy = "python alarmpy.py" +format = "black ." +formatcheck = "black --check ." +lint = "pylint -j 0 -d R,C alarmpy.py" +test = "pytest" -- cgit v1.3.1