Skip to content

Commit

Permalink
CI: add typos job (#1734)
Browse files Browse the repository at this point in the history
This should hopefully cut down on the number of typo-fixing PRs we
receive by automatically checking for them in CI:

https://github.com/crate-ci/typos
  • Loading branch information
tarcieri authored Jan 28, 2025
1 parent aa00ba4 commit 3393356
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,9 @@ jobs:
toolchain: stable
components: rustfmt
- run: cargo fmt --all -- --check

typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/[email protected]
10 changes: 10 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[files]
extend-exclude = [
".git/",
"elliptic-curve/src/jwk.rs",
"signature/tests/derive.rs"
]

[default.extend-words]
# Authenticated Key Exchange
"AKE" = "AKE"
2 changes: 1 addition & 1 deletion elliptic-curve/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Move `hash2field` into `hash2curve` module ([#903])
- Bump `ff` and `group` dependencies to v0.12 ([#994])
- Use `serdect` crate ([#996])
- Replace `AlgorithmParamters` with `AssociatedOid` ([#1001])
- Replace `AlgorithmParameters` with `AssociatedOid` ([#1001])
- Bump `crypto-bigint` dependency to v0.4 ([#1005])
- Bump `der` dependency to v0.6 ([#1006])
- Bump `pkcs8` dependency to v0.9 ([#1006])
Expand Down

0 comments on commit 3393356

Please sign in to comment.