add .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Kim Oliver Drechsel 2021-08-07 20:52:05 +02:00
parent 79e2a763ba
commit 600558c9c0

View File

@ -16,10 +16,13 @@ steps:
- apk --no-cache add gcc musl-dev tzdata - apk --no-cache add gcc musl-dev tzdata
- pip3 install --no-cache-dir -r requirements.txt - pip3 install --no-cache-dir -r requirements.txt
- echo "$DEBUG_MODE" - echo "$DEBUG_MODE"
- python3 - |
- from loghandler import logger python3 -c 'from loghandler import logger;
- logger.debug("This is a Debug Message") def main():
- logger.info("This is a Info Message") logger.debug("This is a Debug Message")
- logger.warning("This is a Warning Message") logger.info("This is a Info Message")
- logger.error("This is a Error Message") logger.warning("This is a Warning Message")
- logger.critical("This is a Critical Message") logger.error("This is a Error Message")
logger.critical("This is a Critical Message")
main()'