Skip to content

Commit f8594fb

Browse files
committed
Added Documenter.yml
1 parent 696cee1 commit f8594fb

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/Documenter.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Documenter
2+
3+
on:
4+
push:
5+
branches:
6+
- doc_test
7+
tags: '*'
8+
pull_request:
9+
10+
jobs:
11+
Documenter:
12+
# These permissions are needed to:
13+
# - Deploy the documentation: https://documenter.juliadocs.org/stable/man/hosting/#Permissions
14+
# - Delete old caches: https://github.com/julia-actions/cache#usage
15+
permissions:
16+
actions: write
17+
contents: write
18+
pull-requests: read
19+
statuses: write
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: julia-actions/setup-julia@v2
24+
with:
25+
version: '1.11' # replace this with whatever version you need
26+
show-versioninfo: true # this causes versioninfo to be printed to the action log
27+
- uses: julia-actions/cache@v2 # cache using https://github.com/julia-actions/cache
28+
- uses: julia-actions/julia-buildpkg@v1 # if package requires Pkg.build()
29+
- uses: julia-actions/julia-docdeploy@v1
30+
with:
31+
prefix: xvfb-run
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)