CodeQL: scope analysis to src/ so libdeps stop drowning the alerts #28
This file contains hidden or 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: Typos | |
| # Spell-checks the repo using crate-ci/typos. Fast (sub-second), low | |
| # false-positive rate. Skips binary files automatically and respects | |
| # .gitignore. If something legitimate trips the checker (M5Stack-specific | |
| # terms, identifier names, etc.) add it to .typos.toml. | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| spell-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run typos | |
| uses: crate-ci/typos@master |