Skip to content

Commit

Permalink
Give it one more go
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWillFlood committed Mar 29, 2024
1 parent e7e20bf commit d77a530
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ notifications:
email: false
julia:
- 1.8
- 1
- nightly
os:
- linux
Expand All @@ -12,19 +13,28 @@ cache:
- ~/.julia/artifacts

jobs:
fast_finish: true
allow_failures:
- julia: nightly
include:
- stage: Documentation
- stage: "Documentation"
julia: 1.8
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
script: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
using Documenter: DocMeta, doctest
using EntropyHub
DocMeta.setdocmeta!(EntropyHub, :DocTestSetup, :(using EntropyHub); recursive=true)
doctest(EntropyHub)
include("docs/make.jl")'
after_success: skip

after_success:
- julia -e '
using Pkg;
Pkg.add("Coverage");
using Coverage;
- |
julia -e '
using Pkg
Pkg.add("Coverage")
using Coverage
Coveralls.submit(process_folder())'

0 comments on commit d77a530

Please sign in to comment.