Skip to content

Commit 794fe9a

Browse files
committed
initial travis file upload with only check relase step stages
1 parent ca41d50 commit 794fe9a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: python
2+
python:
3+
- "3.4"
4+
- "3.5"
5+
- "3.6"
6+
7+
jobs:
8+
include:
9+
- stage: check_release_steps
10+
script: if git tag | grep -qE "^v$(python setup.py --version)$"; then echo "Release already exists"; exit 1; fi
11+
script: if ! grep -q "v$(python setup.py --version)" CHANGELOG.md; then echo "Version missing in CHANGELOG.md"; exit 1; fi
12+
13+

0 commit comments

Comments
 (0)