Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
s-celles committed Oct 29, 2018
1 parent 2c83006 commit 5709987
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 20 deletions.
29 changes: 11 additions & 18 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,14 @@ git:
allow_failures:
- julia: nightly

## uncomment and modify the following lines to manually install system packages
#addons:
# apt: # apt-get for linux
# packages:
# - gfortran
#before_script: # homebrew for mac
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi

## uncomment the following lines to override the default test script
#script:
# - julia -e 'Pkg.clone(pwd()); Pkg.build("ExtensibleScheduler"); Pkg.test("ExtensibleScheduler"; coverage=true)'
after_success:
- julia -e 'Pkg.add("Documenter")'
- julia -e 'cd(Pkg.dir("ExtensibleScheduler")); include(joinpath("docs", "make.jl"))'
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("ExtensibleScheduler")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("ExtensibleScheduler")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
# https://juliadocs.github.io/Documenter.jl/latest/man/hosting/#.travis.yml-Configuration-1
jobs:
include:
- stage: "Documentation"
julia: 1.0
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
Pkg.develop(PackageSpec(path=pwd()))'
- julia --project=docs/ docs/make.jl
after_success: skip
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

[![codecov.io](http://codecov.io/github/scls19fr/ExtensibleScheduler.jl/coverage.svg?branch=master)](http://codecov.io/github/scls19fr/ExtensibleScheduler.jl?branch=master)

[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://scls19fr.github.io/ExtensibleScheduler.jl/stable) or [![](https://img.shields.io/badge/docs-latest-blue.svg)](https://scls19fr.github.io/ExtensibleScheduler.jl/latest)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://scls19fr.github.io/ExtensibleScheduler.jl/stable) or [![](https://img.shields.io/badge/docs-dev-blue.svg)](https://scls19fr.github.io/ExtensibleScheduler.jl/dev)

An advanced and extensible [Julia](https://julialang.org/) events scheduler inspired by Python schedulers [APScheduler](https://apscheduler.readthedocs.io/), [schedule](https://github.com/dbader/schedule) and [sched](https://docs.python.org/3/library/sched.html).
5 changes: 5 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[compat]
Documenter = "~0.20"
1 change: 0 additions & 1 deletion docs/REQUIRE

This file was deleted.

0 comments on commit 5709987

Please sign in to comment.