Add missing legal_action_space_mask
default methods (#1075)
#2005
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: SpellCheck | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
spellchecking: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out the code | |
- uses: actions/setup-node@v4 | |
name: Run spell check | |
with: | |
node-version: "21" | |
- run: npm install -g cspell | |
- run: cspell --config ./.cspell/cspell.json "**/*.jl" "**/*.md" |