on:
  pull_request:
    branches:
      - master
    paths-ignore:
      - 'docs/**'
  push:
    branches:
      - master
    paths-ignore:
      - 'docs/**'
	  
```@eval
using TOML
using Markdown
version = TOML.parse(read("../../Project.toml", String))["version"]
name = TOML.parse(read("../../Project.toml", String))["name"]
link_manifest = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
                "/assets/Manifest.toml"
link_project = "https://github.com/SciML/" * name * ".jl/tree/gh-pages/v" * version *
               "/assets/Project.toml"
Markdown.parse("""You can also download the
[manifest]($link_manifest)
file and the
[project]($link_project)
file.
""")
```

    warnonly = [:docs_block, :missing_docs, :cross_references, :linkcheck],
	
	Improve docstrings
Such that `makedocs` `warnonly = [:docs_block, :missing_docs, :cross_references, :linkcheck]` can be removed.

Documenter 1.0 upgrade.
Also adds formatter workflow in anticipation of formatter being fixed.
Formatting has thus not yet been applied.