File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 24
24
arch :
25
25
- x64
26
26
steps :
27
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v5
28
28
- uses : julia-actions/setup-julia@v1
29
29
with :
30
30
version : ${{ matrix.version }}
35
35
- uses : julia-actions/julia-processcoverage@v1
36
36
- uses : codecov/codecov-action@v1
37
37
with :
38
- file : lcov.info
38
+ file : lcov.info
39
+
40
+ docs :
41
+ name : Documentation
42
+ runs-on : ubuntu-latest
43
+ steps :
44
+ - uses : actions/checkout@v5
45
+ - uses : julia-actions/setup-julia@v2
46
+ with :
47
+ version : ' 1'
48
+ - run : |
49
+ julia --project=docs -e '
50
+ using Pkg
51
+ Pkg.develop(PackageSpec(path=pwd()))
52
+ Pkg.instantiate()'
53
+ - run : |
54
+ julia --project=docs -e '
55
+ using Documenter: DocMeta, doctest
56
+ using LinearOperatorCollection'
57
+ - run : julia --project=docs docs/make.jl
58
+ env :
59
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
60
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments