Skip to content

Commit 6c7cb99

Browse files
authored
Update CI workflow to build and deploy documentation
Removed doctests step and added build and deploy docs step.
1 parent e2af224 commit 6c7cb99

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,8 @@ jobs:
5050
- uses: julia-actions/julia-buildpkg@v1
5151
- name: Install docs dependencies
5252
run: julia --project=docs -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
53-
- name: Run doctests
54-
run: |
55-
julia --project=docs -e '
56-
using Documenter: DocMeta, doctest
57-
using FLOWFarm
58-
DocMeta.setdocmeta!(FLOWFarm, :DocTestSetup, :(using FLOWFarm); recursive=true)
59-
doctest(FLOWFarm)'
60-
- uses: julia-actions/julia-docdeploy@v1
53+
- name: Build and deploy docs
54+
run: julia --project=docs docs/make.jl
6155
env:
6256
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6357
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)