Skip to content

Commit 979d912

Browse files
committed
Run CI correctly
1 parent c62e60b commit 979d912

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
version:
14-
- '1.5'
14+
- '1.6'
1515
- '1'
16+
- '~1.10.0-0'
1617
os:
1718
- ubuntu-latest
1819
threads:
@@ -44,6 +45,7 @@ jobs:
4445
- uses: codecov/codecov-action@v3
4546
with:
4647
file: lcov.info
48+
4749
docs:
4850
name: Documentation
4951
runs-on: ubuntu-latest

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PolyesterForwardDiff"
22
uuid = "98d1487c-24ca-40b6-b7ab-df2af84e126b"
33
authors = ["The Chrises"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55

66
[deps]
77
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
@@ -14,6 +14,8 @@ julia = "1.6"
1414

1515
[extras]
1616
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
17+
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
18+
Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588"
1719

1820
[targets]
19-
test = ["Test"]
21+
test = ["Test", "Polyester", "ForwardDiff"]

docs/make.jl

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
using PolyesterForwardDiff
22
using Documenter
33

4-
DocMeta.setdocmeta!(Polyester, :DocTestSetup, :(using PolyesterForwardDiff); recursive=true)
4+
DocMeta.setdocmeta!(PolyesterForwardDiff, :DocTestSetup,
5+
:(using PolyesterForwardDiff); recursive=true)
56

67
makedocs(;
78
modules=[PolyesterForwardDiff],
89
authors="Chris Elrod <[email protected]> and contributors",
9-
repo="https://github.com/JuliaSIMD/PolyesterForwardDiff.jl/blob/{commit}{path}#{line}",
10+
repo="https://github.com/JuliaDiff/PolyesterForwardDiff.jl/blob/{commit}{path}#{line}",
1011
sitename="PolyesterForwardDiff.jl",
1112
format=Documenter.HTML(;
1213
prettyurls=get(ENV, "CI", "false") == "true",
13-
canonical="https://JuliaSIMD.github.io/PolyesterForwardDiff.jl",
14+
canonical="https://juliadiff.org/PolyesterForwardDiff.jl",
1415
assets=String[],
1516
),
1617
pages=[
@@ -19,5 +20,5 @@ makedocs(;
1920
)
2021

2122
deploydocs(;
22-
repo="github.com/JuliaSIMD/PolyesterForwardDiff.jl",
23+
repo="github.com/JuliaDiff/PolyesterForwardDiff.jl",
2324
)

0 commit comments

Comments
 (0)