attempt to find better starting values for GLMM when defaults aren't positive semidefinite #165
Workflow file for this run
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
# adapted from https://github.com/JuliaDocs/Documenter.jl/blob/master/.github/workflows/SpellCheck.yml | |
# see docs at https://github.com/crate-ci/typos | |
name: Spell Check | |
on: [pull_request] | |
jobs: | |
typos-check: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v4 | |
- name: Check spelling | |
uses: crate-ci/typos@master | |
with: | |
config: _typos.toml | |
write_changes: true | |
- uses: reviewdog/action-suggester@v1 | |
with: | |
tool_name: Typos | |
fail_on_error: true |