Skip to content

update version to 0.8.4 #1730

update version to 0.8.4

update version to 0.8.4 #1730

Workflow file for this run

name: Spell Check
on:
push:
branches:
- main
pull_request:
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Install codespell
- name: Install codespell
run: pip install codespell
# Run codespell
- name: Run codespell
run: codespell --skip="*.png,*.jpg,*.jpeg,*.gif,*.svg,*.ico,*.pdf,*.js,*.css,*.map" --ignore-words-list="nd,te,OT,ags" --check-filenames