diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml index 35fda5ef..26ea24f0 100644 --- a/.github/workflows/code-coverage.yml +++ b/.github/workflows/code-coverage.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v2 - name: Set up environment - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: auto-update-conda: true auto-activate-base: false diff --git a/docs/Doxyfile.in b/docs/Doxyfile.in index 1e611769..5e867c18 100644 --- a/docs/Doxyfile.in +++ b/docs/Doxyfile.in @@ -154,8 +154,8 @@ IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- -GENERATE_HTML = NO -HTML_OUTPUT = html +GENERATE_HTML = YES +HTML_OUTPUT = html_local HTML_FILE_EXTENSION = .html HTML_HEADER = HTML_FOOTER = @@ -296,16 +296,16 @@ PERL_PATH = @PERL_EXECUTABLE@ #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- -CLASS_DIAGRAMS = NO +CLASS_DIAGRAMS = YES MSCGEN_PATH = DIA_PATH = HIDE_UNDOC_RELATIONS = YES -HAVE_DOT = NO +HAVE_DOT = YES DOT_NUM_THREADS = 0 DOT_FONTNAME = Helvetica DOT_FONTSIZE = 10 DOT_FONTPATH = -CLASS_GRAPH = YES +CLASS_GRAPH = BUILTIN COLLABORATION_GRAPH = YES GROUP_GRAPHS = YES UML_LOOK = NO diff --git a/docs/conf.py b/docs/conf.py index c00441ef..5ca06ff7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,7 +73,7 @@ # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] -breathe_projects = {'MRCPP': '_build/xml'} +breathe_projects = {'MRCPP': '_build/xml', 'dot_graphs': '_build/xml'} breathe_default_project = 'MRCPP'