Skip to content

Commit aba2569

Browse files
authored
Merge pull request #11 from JuliaAstro/icweaver-canonize
Canonize
2 parents 99016bc + 2750fce commit aba2569

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,8 @@ jobs:
3131
- uses: julia-actions/cache@v2
3232
- uses: julia-actions/julia-buildpkg@v1
3333
- uses: julia-actions/julia-runtest@v1
34+
- uses: julia-actions/julia-processcoverage@v1
35+
- uses: codecov/codecov-action@v5
36+
with:
37+
files: lcov.info
38+
token: ${{ secrets.CODECOV_TOKEN }}

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,31 @@ XPA servers or to implement an XPA server. The interface exploits the power of
1313
The [DS9.jl](https://github.com/JuliaAstro/DS9.jl) package is a Julia package
1414
that exploits XPA.jl to communicate with [SAOImage-DS9](http://ds9.si.edu/site/Home.html).
1515

16-
| **Documentation** | **License** | **Build Status** | **Code Coverage** |
17-
|:-------------------------------:|:-------------------------------:|:-----------------------------:|:-------------------------------------------------------------------:|
18-
| [![][doc-dev-img]][doc-dev-url] | [![][license-img]][license-url] | [![][travis-img]][travis-url] | [![][coveralls-img]][coveralls-url] [![][codecov-img]][codecov-url] |
16+
| **Documentation** | **License** | **Build Status** | **Code Coverage** |
17+
|:---------------------------------------------------------------------:|:-------------------------------:|:-----------------------------:|:-------------------------------:|
18+
| [![][doc-stable-img]][doc-stable-url] [![][doc-dev-img]][doc-dev-url] | [![][license-img]][license-url] | [![][ci-img]][ci-url] | [![][codecov-img]][codecov-url] |
1919

2020

2121
[doc-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
22-
[doc-stable-url]: https://JuliaAstro.github.io/XPA.jl/stable
22+
[doc-stable-url]: https://juliaastro.org/XPA/stable/
2323

2424
[doc-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
25-
[doc-dev-url]: https://JuliaAstro.github.io/XPA.jl/dev
25+
[doc-dev-url]: https://juliaastro.org/XPA.jl/dev/
2626

2727
[license-url]: ./LICENSE.md
2828
[license-img]: http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat
2929

30-
[travis-img]: https://travis-ci.org/JuliaAstro/XPA.jl.svg?branch=master
31-
[travis-url]: https://travis-ci.org/JuliaAstro/XPA.jl
30+
[ci-img]: https://github.com/JuliaAstro/XPA.jl/actions/workflows/CI.yml/badge.svg
31+
[ci-url]: https://github.com/JuliaAstro/XPA.jl/actions/workflows/CI.yml
3232

3333
[appveyor-img]: https://ci.appveyor.com/api/projects/status/github/JuliaAstro/XPA.jl?branch=master
3434
[appveyor-url]: https://ci.appveyor.com/project/JuliaAstro/XPA-jl/branch/master
3535

3636
[coveralls-img]: https://coveralls.io/repos/JuliaAstro/XPA.jl/badge.svg?branch=master&service=github
3737
[coveralls-url]: https://coveralls.io/github/JuliaAstro/XPA.jl?branch=master
3838

39-
[codecov-img]: http://codecov.io/github/JuliaAstro/XPA.jl/coverage.svg?branch=master
40-
[codecov-url]: http://codecov.io/github/JuliaAstro/XPA.jl?branch=master
39+
[codecov-img]: https://codecov.io/github/JuliaAstro/XPA.jl/graph/badge.svg?token=S2G8C2AIDP
40+
[codecov-url]: https://codecov.io/github/JuliaAstro/XPA.jl
4141

4242
[julia-url]: https://julialang.org/
4343
[julia-pkgs-url]: https://pkg.julialang.org/

docs/make.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ makedocs(;
88
modules = [XPA],
99
sitename = "XPA.jl",
1010
repo = GitHub("JuliaAstro/XPA.jl"),
11-
format = Documenter.HTML(),
11+
format = Documenter.HTML(;
12+
canonical = "https://juliaastro.org/XPA/stable/",
13+
),
1214
authors = "Éric Thiébaut and contributors",
1315
pages,
1416
doctest = true,
@@ -17,4 +19,5 @@ makedocs(;
1719
deploydocs(
1820
repo = "github.com/JuliaAstro/XPA.jl.git",
1921
push_preview = true,
22+
versions = ["stable" => "v^", "v#.#"] # Restrict to minor releases
2023
)

0 commit comments

Comments
 (0)