summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2021-05-14 11:10:14 +0300
committerGitHub <noreply@github.com>2021-05-14 11:10:14 +0300
commit5e394ad7a66f2afd9d79921424b8f76534f5b4d6 (patch)
tree4dbdf153e9c3dc7ece1f3bf8aef1a98ca8772994 /Pipfile
parent003fa8bd7eff4e10e57144c7702cb05a0eabed4b (diff)
Implement Github action CI workflow (#4)
* Add pylint dependency * Add initial pylintrc and scripts * Cleanup lints * Initial CI workflow * Skip tests for now
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile5
1 files changed, 5 insertions, 0 deletions
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"