We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 027fb6b commit 6519ab5Copy full SHA for 6519ab5
.github/workflows/test.yml renamed to .github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: Run tests
+name: CI
2
on:
3
pull_request:
4
branches:
@@ -57,3 +57,17 @@ jobs:
57
- uses: codecov/codecov-action@v3
58
with:
59
file: lcov.info
60
+ docs:
61
+ runs-on: ubuntu-latest
62
+ timeout-minutes: 30
63
+ steps:
64
+ - uses: actions/checkout@v2
65
+ - uses: julia-actions/setup-julia@latest
66
+ with:
67
+ version: '1'
68
+ - name: Build and deploy docs
69
+ env:
70
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
71
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
72
+ run: julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); include("docs/make.jl")'
73
+
.github/workflows/documenter-workflow.yml
0 commit comments