Skip to content

update dapp tutorial #53

update dapp tutorial

update dapp tutorial #53

Workflow file for this run

name: Spell Check
on:
pull_request
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install codespell
run: pip install codespell
- name: Run spell check
run: codespell docs/ --config .codespell