Skip to content

Commit 1c21872

Browse files
authored
Enhance CI workflow with docs dependencies and doctests
Added steps to install documentation dependencies and run doctests.
1 parent 9b60378 commit 1c21872

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ jobs:
4848
version: '1.11'
4949
- uses: julia-actions/cache@v2
5050
- uses: julia-actions/julia-buildpkg@v1
51-
- run: |
51+
- name: Install docs dependencies
52+
run: julia --project=docs -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
53+
- name: Run doctests
54+
run: |
5255
julia --project=docs -e '
5356
using Documenter: DocMeta, doctest
5457
using FLOWFarm

0 commit comments

Comments
 (0)