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 27f5353 commit 00676c6Copy full SHA for 00676c6
.github/workflows/Documentation.yml
@@ -0,0 +1,23 @@
1
+name: Documentation
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ tags: '*'
7
+ pull_request:
8
+ types: [opened, synchronize, reopened]
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - uses: julia-actions/setup-julia@latest
15
+ with:
16
+ version: '1'
17
+ - name: Install dependencies
18
+ run: julia --project=docs -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
19
+ - name: Build and deploy
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
23
+ run: julia --project=docs --color=yes docs/make.jl
0 commit comments