Rewriting scipy/xsf in julia.
# The following command will init docs project in the `docs/` directory.
# You only need to run this line once.
julia --project=docs -e "using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();"
julia --project=docs docs/make.jl
# html files located in `docs/build/`You need a fortran compiler to run the test.
Activate test project:
julia --project=testRun test and gen coverage:
using Pkg; using LocalCoverage;
ENV["GITHUB_WORKSPACE"] = pwd()
Pkg.add(url="."); html_coverage(generate_coverage("PureSpecial"; run_test=true); dir = "../cov")
# Pkg.add(PackageSpec(path=".", rev="dev")); html_coverage(generate_coverage("PureSpecial"; run_test=true); dir = "../cov")# SPDX-License-Identifier: MIT