From 4ef524fc2efb35d8672db8b1a0668a92cd1b0a8a Mon Sep 17 00:00:00 2001 From: relmonta <46019567+relmonta@users.noreply.github.com> Date: Thu, 5 Nov 2020 19:31:31 +0100 Subject: [PATCH] Create .travis.yml --- .travis.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..10a9fc9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: julia + + os: + - osx + - linux + - windows +julia: + - 1.4 +beofre_script: + - julia -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/mathn7/TestOptinum.git"))' + +notifications: + email: false + +jobs: + include: + - stage: Documentation + julia: 1.4 + os: linux + script: + - julia --project=docs -e 'using Pkg; Pkg.instantiate(); Pkg.develop(PackageSpec(path=pwd()))' + - julia --project=docs --color=yes docs/make.jl + after_success: skip