diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2024-07-23 16:29:09 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-23 11:29:09 +0200 |
| commit | b7347860f71179a4675ec785644abe1bb09e415a (patch) | |
| tree | bc1623f11de58eddf2bcaafd152f085cae8cdd54 /.github | |
| parent | ce17947fd79b2ebc79be4f3570e371ebbb426bb1 (diff) | |
| download | rapier-b7347860f71179a4675ec785644abe1bb09e415a.tar.gz rapier-b7347860f71179a4675ec785644abe1bb09e415a.tar.bz2 rapier-b7347860f71179a4675ec785644abe1bb09e415a.zip | |
ci: Add `typos` check (#698)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/rapier-ci-build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/rapier-ci-build.yml b/.github/workflows/rapier-ci-build.yml index 3962323..c44704b 100644 --- a/.github/workflows/rapier-ci-build.yml +++ b/.github/workflows/rapier-ci-build.yml @@ -89,3 +89,11 @@ jobs: run: cd crates/rapier2d && cargo build --verbose --target wasm32-unknown-emscripten --features simd-stable; - name: build rapier3d --features simd-stable run: cd crates/rapier3d && cargo build --verbose --target wasm32-unknown-emscripten --features simd-stable; + # If this fails, consider changing your text or adding something to .typos.toml + # You can find typos here: https://crates.io/crates/typos' + typos: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: check typos + uses: crate-ci/typos@v1.23.2 |
