File tree Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 46
46
- uses : julia-actions/julia-runtest@latest
47
47
with :
48
48
coverage : false
49
-
49
+ docs :
50
+ name : Documentation
51
+ runs-on : ubuntu-latest
52
+ steps :
53
+ - uses : actions/checkout@v4
54
+ - uses : julia-actions/setup-julia@latest
55
+ with :
56
+ version : ' 1.9'
57
+ - run : julia --project=docs -e '
58
+ using Pkg;
59
+ Pkg.develop(PackageSpec(; path=pwd()));
60
+ Pkg.instantiate();'
61
+ - run : julia --project=docs docs/make.jl
62
+ env :
63
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -9,8 +9,4 @@ makedocs(
9
9
" Home" => " index.md" ,
10
10
" API" => " api.md"
11
11
]
12
- )
13
-
14
- deploydocs (
15
- repo = " github.com/JuliaText/Languages.jl.git"
16
- )
12
+ )
Original file line number Diff line number Diff line change 1
1
``` @autodocs
2
2
Modules = [Languages]
3
- Private = false
4
3
```
4
+
5
+
You can’t perform that action at this time.
0 commit comments