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 0fb1a1d commit 0b03bcfCopy full SHA for 0b03bcf
.github/workflows/ci.yml
@@ -46,3 +46,25 @@ jobs:
46
files: lcov.info
47
token: ${{ secrets.CODECOV_TOKEN }}
48
fail_ci_if_error: false
49
+ docs:
50
+ name: Documentation
51
+ runs-on: ubuntu-latest
52
+ steps:
53
+ - uses: actions/checkout@v2
54
+ - uses: julia-actions/setup-julia@v1
55
+ with:
56
+ version: '1'
57
+ - run: |
58
+ julia --project=docs -e '
59
+ using Pkg
60
+ Pkg.develop(PackageSpec(path=pwd()))
61
+ Pkg.instantiate()'
62
63
64
+ using Documenter: doctest
65
+ using Parameters
66
+ doctest(Parameters)'
67
+ - run: julia --project=docs docs/make.jl
68
+ env:
69
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
0 commit comments