File tree Expand file tree Collapse file tree 5 files changed +44
-1
lines changed Expand file tree Collapse file tree 5 files changed +44
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Documentation
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ tags : ' *'
8+ pull_request :
9+
10+ jobs :
11+ build :
12+ permissions :
13+ actions : write
14+ contents : write
15+ pull-requests : read
16+ statuses : write
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v4
20+ - uses : julia-actions/setup-julia@v2
21+ with :
22+ version : ' 1.9'
23+ - uses : julia-actions/cache@v1
24+ - name : Install dependencies
25+ run : julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
26+ - name : Build and deploy
27+ env :
28+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token
29+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key
30+ run : julia --project=docs/ docs/make.jl
Original file line number Diff line number Diff line change 11name = " MeshIntegrals"
22uuid = " dadec2fd-bbe0-4da4-9dbe-476c782c8e47"
33authors = [
" Mike Ingold <[email protected] >" ]
4- version = " 0.13.0 "
4+ version = " 0.13.1 "
55
66[deps ]
77CoordRefSystems = " b46f11dc-f210-4604-bfba-323c1ec968cb"
Original file line number Diff line number Diff line change 1+ [deps ]
2+ Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+ MeshIntegrals = " dadec2fd-bbe0-4da4-9dbe-476c782c8e47"
Original file line number Diff line number Diff line change 1+ using Documenter
2+ using MeshIntegrals
3+
4+ makedocs (sitename= " MeshIntegrals.jl Documentation" )
5+
6+ deploydocs (repo = " github.com/mikeingold/MeshIntegrals.jl.git" )
Original file line number Diff line number Diff line change 1+ # MeshIntegrals.jl
2+
3+ ** MeshIntegrals.jl** is a Julia library that leverages differential forms to implement fast
4+ and easy numerical integration of field equations over geometric domains.
You can’t perform that action at this time.
0 commit comments