Add GitLabCI to badge order and docs

This commit is contained in:
Chris de Graaf 2017-09-04 19:41:32 +01:00
parent 365a02c0bf
commit 23c6a0d370
2 changed files with 7 additions and 1 deletions

View File

@ -20,6 +20,12 @@ TravisCI
AppVeyor
```
## `GitLabCI`
```@docs
GitLabCI
```
## `CodeCov`
```@docs

View File

@ -24,6 +24,6 @@ include(joinpath("plugins", "gitlabci.jl"))
include(joinpath("plugins", "githubpages.jl"))
const DEFAULTS_DIR = normpath(joinpath(@__DIR__, "..", "defaults"))
const BADGE_ORDER = [GitHubPages, TravisCI, AppVeyor, CodeCov, Coveralls]
const BADGE_ORDER = [GitHubPages, TravisCI, AppVeyor, GitLabCI, CodeCov, Coveralls]
end