tg_rss_bot/.drone.yml

51 lines
1.0 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:09:41 +00:00
- apk update && apk add git
#- python -m venv .venv
2022-05-02 13:53:19 +00:00
- source ./.venv/bin/activate
- 'pip install pylama pylama\[all\] > /dev/null'
- 'pylama $(git diff --name-only --diff-filter=ACMRTUXB ${DRONE_TARGET_BRANCH} | grep -E "(.py$)")'
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