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 c13fa66 commit 8970275Copy full SHA for 8970275
.github/workflows/CI.yml
@@ -48,6 +48,17 @@ jobs:
48
- uses: julia-actions/cache@v2
49
- uses: julia-actions/julia-buildpkg@v1
50
- uses: julia-actions/julia-runtest@v1
51
+ - name: "Run doctests"
52
+ if: ${{ matrix.julia-version == '1.6' }} # only run in one Julia version due to fluctuations
53
+ run: |
54
+ julia --project=docs --color=yes --code-coverage -e '
55
+ using Pkg
56
+ Pkg.develop(PackageSpec(path=pwd()))
57
+ Pkg.instantiate()
58
+ using Documenter
59
+ using DataStructures
60
+ DocMeta.setdocmeta!(DataStructures, :DocTestSetup, :(using DataStructures); recursive=true)
61
+ doctest(DataStructures)'
62
- uses: julia-actions/julia-processcoverage@v1
63
- uses: codecov/codecov-action@v5
64
with:
0 commit comments