Allow pure statements that contain early returns #11829
Workflow file for this run
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
on: | |
pull_request: | |
name: SpellCheck | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
spell-check: | |
name: spell check | |
runs-on: [ubuntu-20.04] | |
timeout-minutes: 10 | |
env: | |
FORCE_COLOR: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo install typos-cli --version 1.0.11 | |
- name: do spell check with typos-cli 1.0.11 | |
run: typos |