We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 212d28b commit 593f94aCopy full SHA for 593f94a
.travis.yml
@@ -3,6 +3,7 @@ python:
3
- 3.8
4
5
stages:
6
+ - lint
7
# Only execute deployment stage on tagged release commits in the form of "v1.2.3"
8
# and from your repository (e.g. not PRs).
9
# Also allows alpha/beta releases such as "v1.2.3b2"
@@ -11,6 +12,14 @@ stages:
11
12
13
jobs:
14
include:
15
+ # Run lint
16
+ - stage: lint
17
+ name: Lint
18
+ install:
19
+ - python -m pip install pylint
20
+ - python -m pip install .
21
+ script: pylint rdl_pygments
22
+
23
# Deploy source distribution
24
- stage: deploy
25
name: Deploy source distribution
0 commit comments