chore(deps): update rust crate tokio to v1.42.0 #2628
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: Check Spelling | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
spellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install cargo-spellcheck | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-spellcheck | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: Run cargo-spellcheck | |
run: cargo spellcheck --cfg=.github/spellcheck/finalizer.cfg --code 1 |