-
Notifications
You must be signed in to change notification settings - Fork 5
41 lines (41 loc) · 1.05 KB
/
Docs.yml
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
name: Documentation
on:
workflow_dispatch:
push:
branches: [main]
tags: '*'
paths:
- '.github/workflows/Docs.yml'
- 'src/**'
- 'docs/**'
pull_request:
types: [opened, synchronize, reopened]
paths:
- '.github/workflows/docs.yml'
- 'src/**'
- 'docs/**'
jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read # Required when using `push_preview=true`
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1'
- name: Configure doc environment
shell: julia --project=docs --color=yes {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run doctests
run: julia --project=docs --color=yes docs/make.jl