diff options
| author | Yuval Adam <_@yuv.al> | 2021-05-14 11:10:14 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-14 11:10:14 +0300 |
| commit | 5e394ad7a66f2afd9d79921424b8f76534f5b4d6 (patch) | |
| tree | 4dbdf153e9c3dc7ece1f3bf8aef1a98ca8772994 /Pipfile | |
| parent | 003fa8bd7eff4e10e57144c7702cb05a0eabed4b (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-- | Pipfile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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" |
