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.
2 parents 7857aec + 6a09fca commit 63f4e14Copy full SHA for 63f4e14
.github/workflows/ci.yml
@@ -45,3 +45,22 @@ jobs:
45
- uses: codecov/codecov-action@v1
46
with:
47
file: lcov.info
48
+ docs:
49
+ name: Documentation
50
+ runs-on: ubuntu-latest
51
+ steps:
52
+ - uses: actions/checkout@v2
53
+ - uses: julia-actions/setup-julia@v1
54
+ with:
55
+ version: '1'
56
+ - uses: julia-actions/julia-buildpkg@v1
57
+ - uses: julia-actions/julia-docdeploy@v1
58
+ env:
59
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
60
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
61
+ - run: |
62
+ julia --project=docs -e '
63
+ using Documenter: DocMeta, doctest
64
+ using MLJModelInterface
65
+ DocMeta.setdocmeta!(MLJModelInterface, :DocTestSetup, :(using MLJModelInterface); recursive=true)
66
+ doctest(MLJModelInterface)'
0 commit comments