docs: fix documentation actions
Package was initialized with `cowsay` and needed revised to use a module name of `Cowsay` and a function name of `cowsay` Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
5e7aefe63a
commit
6a75c724e2
1 changed files with 3 additions and 3 deletions
6
.github/workflows/CI.yml
vendored
6
.github/workflows/CI.yml
vendored
|
@ -55,9 +55,9 @@ jobs:
|
|||
- run: |
|
||||
julia --project=docs -e '
|
||||
using Documenter: DocMeta, doctest
|
||||
using cowsay
|
||||
DocMeta.setdocmeta!(cowsay, :DocTestSetup, :(using cowsay); recursive=true)
|
||||
doctest(cowsay)'
|
||||
using Cowsay
|
||||
DocMeta.setdocmeta!(Cowsay, :DocTestSetup, :(using Cowsay); recursive=true)
|
||||
doctest(Cowsay)'
|
||||
- run: julia --project=docs docs/make.jl
|
||||
env:
|
||||
JULIA_PKG_SERVER: ""
|
||||
|
|
Loading…
Reference in a new issue