tg_rss_bot/.drone.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

2022-05-02 13:53:19 +00:00
# https://docs.drone.io/pipeline/overview/
# https://docs.drone.io/pipeline/configuration/
2022-05-02 00:03:00 +00:00
kind: pipeline
2022-05-02 13:53:19 +00:00
type: docker
name: app-check
2022-05-02 00:03:00 +00:00
steps:
- name: build-deps
2022-05-30 22:09:41 +00:00
image: 'python:3-alpine'
2022-05-02 00:03:00 +00:00
commands:
- python -m venv .venv
- source ./.venv/bin/activate
- pip install -r requirements.txt
when:
event:
include:
- pull_request
2022-05-02 13:53:19 +00:00
- name: pylama
2022-05-30 22:09:41 +00:00
image: 'python:3-alpine'
2022-05-02 13:53:19 +00:00
commands:
2022-05-30 22:12:44 +00:00
- apk update > /dev/null && apk add git > /dev/null
#- python -m venv .venv
2022-05-30 22:39:06 +00:00
#- source ./.venv/bin/activate
#- 'pip install pylama pylama\[all\] > /dev/null'
2022-05-30 22:43:12 +00:00
- 'echo ${DRONE_TARGET_BRANCH} ${DRONE_SOURCE_BRANCH}'
- 'git --no-pager diff --name-only --diff-filter=ACMRTUXB ${DRONE_TARGET_BRANCH} ${DRONE_SOURCE_BRANCH} | xargs echo'
#- 'git --no-pager diff --name-only --diff-filter=ACMRTUXB ${DRONE_TARGET_BRANCH} ${DRONE_SOURCE_BRANCH} | xargs pylama'
2022-05-02 13:53:19 +00:00
when:
event:
include:
- pull_request
branch:
exclude: master
#---
#kind: pipeline
#type: docker
#name: deploy
#
#steps:
# - name: deploy
# image: alpine
# commands:
# - 'echo "TODO: implement deploy"'
# when:
# branch: master
#
#depends_on:
# - build
# - code-audit