From f044a777c497c7611e24de09df85279ce71b6421 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 2 May 2022 03:03:00 +0300 Subject: [PATCH] Drone CI draft. --- .drone.yml | 10 ++++++++++ README.md | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e78cc23 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +name: default + +steps: + - name: environment + image: 'python:3.10-alpine' + commands: + - python -m venv .venv + - source ./.venv/bin/activate + - pip install -r requirements.txt diff --git a/README.md b/README.md index 4b166d3..b19ac07 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,7 @@ # Telegram RSS Bot + +[![Build Status](https://ci.skobk.in/api/badges/Miroslavsckaya/tg_rss_bot/status.svg)](https://ci.skobk.in/Miroslavsckaya/tg_rss_bot) + ## Setting up virtual environment To be able to isolate project environment we'll use -- 2.40.1