Take the dispersion into account for GLMM familes with a dispersion param #941
This file contains 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 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [main] | |
tags: [v*] | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
pull_request: | |
branches: | |
- main | |
- v3.x | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
jobs: | |
Documenter: | |
name: Documentation | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: 1.8 | |
- uses: julia-actions/cache@v1 | |
with: | |
cache-compiled: "true" | |
- uses: julia-actions/julia-buildpkg@latest | |
- uses: julia-actions/julia-docdeploy@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |