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 9a3688a commit f7c0479Copy full SHA for f7c0479
.github/workflows/CI.yml
@@ -52,6 +52,13 @@ jobs:
52
Pkg.develop(PackageSpec(path=pwd()))
53
Pkg.instantiate()
54
- uses: julia-actions/julia-buildpkg@v1
55
+ - name: Run doctests
56
+ shell: julia --project=docs --color=yes {0}
57
+ run: |
58
+ using Documenter: DocMeta, doctest
59
+ using Primes
60
+ DocMeta.setdocmeta!(Primes, :DocTestSetup, :(using Primes); recursive=true)
61
+ doctest(Primes)
62
- uses: julia-actions/julia-docdeploy@v1
63
env:
64
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments