add loop_delay documenter option, expose idle_time_limit, and fix parsing of delay in @cast blocks to not truncate
#85
Workflow file for this run
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: Documenter | |
| on: | |
| push: | |
| branches: [master, main] | |
| tags: [v*] | |
| pull_request: | |
| jobs: | |
| Documenter: | |
| permissions: | |
| contents: write | |
| statuses: write | |
| name: Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: julia-actions/julia-buildpkg@v1 # if package requires Pkg.build() | |
| - uses: julia-actions/julia-docdeploy@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |