mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-08-17 19:09:04 +00:00
436bf119b2
- remove some automatically generated stuff not should even be in repository - set up lint + Documents.jl in same way it is defined in freshly started projects - add lint + doctest to after_success so that build pass, these needs to be fixed later - build is failing on nightly (0.7) but it's ok for release (0.5.2) - Documenter.jl supports doctests, so this closes least #23 - build system is now on Travis-CI completely, so this closes also #68
11 lines
242 B
Julia
11 lines
242 B
Julia
# This file is a part of project JuliaFEM.
|
|
# License is MIT: see https://github.com/JuliaFEM/NodeNumbering.jl/blob/master/LICENSE
|
|
|
|
using Documenter
|
|
using JuliaFEM
|
|
|
|
makedocs(
|
|
modules = [JuliaFEM],
|
|
checkdocs = :all,
|
|
strict = false)
|