File tree 4 files changed +15
-4
lines changed
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ name: Documentation
2
2
3
3
on :
4
4
push :
5
- branches : [master]
5
+ branches : [master, dev]
6
+
7
+ env :
8
+ BRANCH_NAME : ${{ github.head_ref || github.ref_name }}
6
9
7
10
jobs :
8
11
Documentation :
21
24
- name : Build documentation
22
25
run : |
23
26
git fetch origin gh-pages
24
- mike delete master
25
- mike deploy --push master
27
+ mike delete $BRANCH_NAME
28
+ mike deploy --push $BRANCH_NAME
Original file line number Diff line number Diff line change 1
- # Getting started
1
+ # Getting started okokok
2
2
3
3
EDS-NLP provides a set of spaCy components that are used to extract information from clinical notes written in French.
4
4
Original file line number Diff line number Diff line change @@ -170,6 +170,13 @@ hooks:
170
170
171
171
plugins :
172
172
- search
173
+ - minify :
174
+ minify_html : true
175
+ minify_js : true
176
+ minify_css : true
177
+ htmlmin_opts :
178
+ remove_comments : true
179
+ cache_safe : true
173
180
- autorefs :
174
181
priority :
175
182
- .*
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ dev = [
51
51
" mkdocs~=1.5.2" ,
52
52
" mkdocstrings~=0.20" ,
53
53
" mkdocstrings-python~=1.1" ,
54
+ " mkdocs-minify-plugin" ,
54
55
" pybtex~=0.24.0" ,
55
56
" pathspec>=0.11.1" , # required by vendored mkdocs-autorefs PR
56
57
" astunparse" ,
You can’t perform that action at this time.
0 commit comments