Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Check spelling separately from formatting #19385

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/actions/check_style/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ description: "Checks code formatting use cargo fmt"
runs:
using: "composite"
steps:
- name: Check for Typos with Typos-CLI
uses: crate-ci/[email protected]
with:
config: ./typos.toml

- name: cargo fmt
shell: bash -euxo pipefail {0}
run: cargo fmt --all -- --check
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@ jobs:
- name: Run style checks
uses: ./.github/actions/check_style

- name: Check for typos
uses: crate-ci/[email protected]
with:
config: ./typos.toml

macos_tests:
timeout-minutes: 60
name: (macOS) Run Clippy and tests
Expand Down
Loading