chore(deps): update rust crate syn to v2.0.91 #954
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: Spelling | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: read | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_TERM_COLOR: always | |
CLICOLOR: 1 | |
jobs: | |
pre_ci: | |
uses: dtolnay/.github/.github/workflows/pre_ci.yml@master | |
spelling: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
needs: pre_ci | |
if: needs.pre_ci.outputs.continue | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@v4 | |
- name: Spell Check Repo | |
uses: crate-ci/typos@master |