forked from fsfe/reuse-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
46 lines (40 loc) · 799 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
# SPDX-FileCopyrightText: 2017-2019 Free Software Foundation Europe e.V.
#
# SPDX-License-Identifier: GPL-3.0-or-later
stages:
- test
.run_tox: &tox_definition
stage: test
script:
- pip install tox
- tox
tags:
- docker
py36-test:
<<: *tox_definition
image: python:3.6
variables:
TOXENV: py36-test
py37-test:
<<: *tox_definition
image: python:3.7
variables:
TOXENV: py37-test
py38-test:
<<: *tox_definition
image: python:3.8-rc
variables:
TOXENV: py38-test
lint:
<<: *tox_definition
image: python:3.6
variables:
TOXENV: lint
docs:
<<: *tox_definition
image: python:3.6
variables:
TOXENV: docs
artifacts:
paths:
- docs/_build/html