Skip to content

Commit

Permalink
ci: exclude proptest files when running spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkarw committed Dec 5, 2023
1 parent f49ce22 commit 2d8cb24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ jobs:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- run: cargo install typos-cli || true
- run: typos
- run: typos --exclude /registry/tests/proptest-regressions/
3 changes: 2 additions & 1 deletion .github/workflows/registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ jobs:
- run: cargo install cargo-llvm-cov || true
- run: cd registry && cargo llvm-cov --workspace --fail-under-lines "$MINIMUM_LINE_COVERAGE_PERCENT"

# TODO: This already runs across registiry folder in cli.yml, maybe it's time to extract common.yml?
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- run: cargo install typos-cli || true
- run: cd registry && typos
- run: typos --exclude /registry/tests/proptest-regressions/

0 comments on commit 2d8cb24

Please sign in to comment.