-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (38 loc) · 1.19 KB
/
documentation.yml
File metadata and controls
42 lines (38 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Documentation
on:
push:
branches: ["main"]
pull_request:
types: [opened, reopened, synchronize]
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
actions: write # needed to allow julia-actions/cache to proactively delete old caches that it has created
contents: write
statuses: write
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
- uses: julia-actions/cache@v2
- name: Configure doc environment
working-directory: docs/
shell: julia --project=. --color=yes {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=".."))
Pkg.instantiate()
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- name: Run doctests
working-directory: docs/
shell: julia --project=. --color=yes {0}
run: |
using Documenter: DocMeta, doctest
using MQDT
DocMeta.setdocmeta!(MQDT, :DocTestSetup, :(using MQDT); recursive=true)
doctest(MQDT)