-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
46 lines (36 loc) · 749 Bytes
/
Copy path.travis.yml
File metadata and controls
46 lines (36 loc) · 749 Bytes
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
language: python
dist: focal
python:
# - '3.4'
# - '3.5'
# - '3.6'
- '3.9'
sudo: required
notifications:
email:
recipients:
- benarvin93@outlook.com
on_success: always
on_failure: always
# if: type != push OR (tag IS blank AND branch = master)
# if: type != push OR (tag IS present AND branch = master)
# if: tag IS present AND branch = master
if: tag IS present
before_install:
- chmod +x travis/travis_install.sh
install:
- travis/travis_install.sh
before_script:
- chmod +x travis/travis_script.sh
script:
- travis/travis_script.sh
# after_success:
# - travis/travis_after_success.sh
deploy:
skip_existing: true
provider: pypi
user: ${U_NAME}
password: ${U_SECURE}
on:
all_branches: true
tags: true