-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
45 lines (38 loc) · 1.03 KB
/
.travis.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
language: python
dist: jammy
stages:
- name: Build-Test
if: tag IS blank
# Uncomment these stages when you're ready to use them.
# - name: Semantic-Release
# if: (branch = main) AND (type IN (push, api)) AND (fork = false)
# - name: Publish-Release
# if: (tag IS present) AND (fork = false)
# Default "install" and "script" steps.
install: true
script:
- make ci
jobs:
include:
- stage: Build-Test
python: '3.8'
- python: '3.10'
- python: '3.11'
- python: '3.12'
# Uncomment this stage to use semantic-release to automatically create new releases.
# - stage: Semantic-Release
# language: node_js
# node_js: 22
# install:
# - npm install
# - pip install --user bump-my-version
# script:
# - npm run semantic-release
# Uncomment this stage to automatically publish your package to pypi.org.
# - stage: Publish-Release
# python: "3.8"
# name: Publish-To-PyPi
# script:
# - make ci
# - make publish-deps
# - make publish-release