-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
53 lines (43 loc) · 873 Bytes
/
.gitlab-ci.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
# Global --------------------------
variables:
PIP_CACHE_DIR: "${CI_PROJECT_DIR}/.cache/pip"
cache:
key: "${CI_JOB_NAME}"
paths:
- .cache/pip
- .venv
stages:
- quality
- tests
- publish
# Jobs templates ------------------
.install-deps-template: &install-deps
before_script:
- pip install poetry
- poetry --version
- poetry config virtualenvs.in-project true
- poetry install -vv
.quality-template: &quality
<<: *install-deps
image: python:3.8
stage: quality
.test-template: &test
<<: *install-deps
stage: tests
script: make test
check:
<<: *quality
script: make lint
python3.8:
<<: *test
image: python:3.8
publish:
<<: *install-deps
image: python:3.8
stage: publish
only:
- tags
except:
- branches
script:
- poetry publish --username=__token__ --password="$PYPI_PASSWORD" --build