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 2424 arch :
2525 - x64
2626 steps :
27- - uses : actions/checkout@v3
27+ - uses : actions/checkout@v5
2828 - uses : julia-actions/setup-julia@v1
2929 with :
3030 version : ${{ matrix.version }}
3535 - uses : julia-actions/julia-processcoverage@v1
3636 - uses : codecov/codecov-action@v1
3737 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