Fix incorrect binding path in re-load last model command + Fix invalid icon name in model selection button causing issues #76
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
# Check pull requests for typos. | |
# | |
# Configuration: .github/_typos.toml | |
# | |
# Info: https://github.com/marketplace/actions/typos-action | |
# Local install: brew install typos-cli | |
# Local install: conda install typos | |
# Local run: typos -c .github/_typos.toml | |
name: spell_check | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
run: | |
name: Spell check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Use custom config file | |
uses: crate-ci/typos@master | |
with: | |
config: .github/_typos.toml | |
write_changes: false | |
quiet: true |