Some checks failed
Build and Test / run_tests (push) Failing after 1m49s
Spellcheck / spellcheck (push) Failing after 7m0s
UB test / run_miri (push) Successful in 1m32s
Documentation / build_docs (push) Failing after 3s
Documentation / deploy_github_pages (push) Has been skipped
26 lines
593 B
YAML
26 lines
593 B
YAML
# source: https://github.com/crate-ci/typos/blob/master/docs/github-action.md
|
|
name: Spellcheck
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
spellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install rustup
|
|
uses: https://github.com/actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
components: cargo
|
|
|
|
- name: Install typos
|
|
run: cargo install typos-cli
|
|
|
|
- name: Check spelling of source code
|
|
run: typos ./src/*.rs README.md
|