-
Notifications
You must be signed in to change notification settings - Fork 1
/
.drone.yml
79 lines (72 loc) · 1.16 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
kind: pipeline
name: pyramid_task_scheduler
steps:
- name: linting
image: python
commands:
- pip install flake8 black
- flake8 .
- black --diff .
- black --check .
- name: python3-6
image: python:3.6
commands:
- pip3 install .
depends_on:
- linting
- name: python3-7
image: python:3.7
commands:
- pip3 install .
depends_on:
- linting
- name: python3-8
image: python:3.8
commands:
- pip3 install .
depends_on:
- linting
- name: python3-9
image: python:3.9
commands:
- pip3 install .
depends_on:
- linting
- name: python3-10
image: python:3.10
commands:
- pip3 install .
depends_on:
- linting
- name: build
image: python
commands:
- python3 -m pip install --upgrade build
- python3 -m build
depends_on:
- linting
when:
event:
- push
- pull_request
- promote
- name: pypi_publish
image: plugins/pypi
settings:
username:
from_secret: pypi_username
password:
from_secret: pypi_password
skip_build: True
when:
event:
- promote
depends_on:
- linting
- python3-6
- python3-7
- python3-8
- python3-9
- python3-10
- build