Add actions and complete tests

This commit is contained in:
2022-12-13 10:46:28 +01:00
parent f6fdc96c6d
commit 139d080df1
5 changed files with 110 additions and 3 deletions

View File

@@ -1,9 +1,9 @@
SHELL := /bin/bash
.DEFAULT_GOAL := help
.PHONY: coverage deps help lint push test doc build
.PHONY: coverage deps help lint push test build install audit
clean: ## Clean up
rm -rf build dist *.egg-info
rm -rf build dist src/*.egg-info
if [ -f src/fimdlp/cfimdlp.cpp ]; then rm src/fimdlp/cfimdlp.cpp; fi;
for file in src/fimdlp/*.so; do \
if [ -f $${file} ]; then rm $${file}; fi; \