-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
46 lines (37 loc) · 943 Bytes
/
.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
46
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
dist: bionic
julia:
- 1.4
addons:
apt:
sources:
- deadsnakes
packages:
- python3.7
before_install:
- sudo apt-get update
- sudo apt purge python2.7-minimal
- sudo apt-get install python3 python3-pip python3-setuptools
- pip3 install --upgrade pip
- pip install qsosed
- pip install matplotlib
notifications:
email: false
after_success:
- CODECOV_TOKEN=ae04cd54-e81f-496c-aa77-ef280b59ab0e julia -e 'using Pkg; using Coverage; Codecov.submit_local(process_folder())'
#jobs:
# allow_failures:
# - julia: nightly
# fast_finish: true
# include:
# - stage: Documentation
# julia: 1.4
# script: julia --project=docs -e '
# using Pkg;
# Pkg.develop(PackageSpec(path=pwd()));
# Pkg.instantiate();
# include("docs/make.jl");'
# after_success: skip