We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70b5282 commit eb78790Copy full SHA for eb78790
.github/workflows/CI.yml
@@ -62,4 +62,23 @@ jobs:
62
with:
63
files: lcov.info
64
token: ${{ secrets.CODECOV_TOKEN }}
65
+docs:
66
+ name: Documentation
67
+ runs-on: ubuntu-latest
68
+ timeout-minutes: 40
69
+ steps:
70
+ - uses: actions/checkout@v4
71
+ - uses: julia-actions/setup-julia@v2
72
+ - uses: julia-actions/cache@v2
73
+ - uses: julia-actions/julia-buildpkg@v1
74
+ - uses: julia-actions/julia-docdeploy@v1
75
+ env:
76
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
77
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
78
+ - run: |
79
+ julia --project=docs -e '
80
+ using Documenter: DocMeta, doctest
81
+ using VortexStepMethod
82
+ DocMeta.setdocmeta!(VortexStepMethod, :DocTestSetup, :(using VortexStepMethod); recursive=true)
83
+ doctest(VortexStepMethod)'
84
0 commit comments