Skip to content

Commit

Permalink
Move docs from readme to docs and add a doc build
Browse files Browse the repository at this point in the history
+ extract docstrings from the public API and get them onto an API
  reference page.
  • Loading branch information
c42f committed May 29, 2023
1 parent 68d3fbd commit a6a6181
Show file tree
Hide file tree
Showing 12 changed files with 1,425 additions and 1,341 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,18 +95,18 @@ jobs:
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- run: julia sysimage/compile.jl
# docs:
# name: Documentation
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: julia-actions/setup-julia@latest
# with:
# version: '1.6'
# - run: julia --project=docs -e '
# using Pkg;
# Pkg.develop(PackageSpec(; path=pwd()));
# Pkg.instantiate();'
# - run: julia --project=docs docs/make.jl
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: '1.9'
- run: julia --project=docs -e '
using Pkg;
Pkg.develop(PackageSpec(; path=pwd()));
Pkg.instantiate();'
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit a6a6181

Please sign in to comment.