Add docstrings for more methods #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: "master" | |
tags: ["*"] | |
pull_request: | |
release: | |
permissions: | |
contents: write | |
pull-requests: read # Required when using `push_preview=true` | |
statuses: write # Optional, used to report documentation build statuses | |
jobs: | |
build: | |
name: "Build and deploy" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1 | |
- name: Cache artifacts | |
uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-docdeploy@releases/v1 | |
env: | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |