mirror of
https://github.com/nushell/nushell
synced 2025-01-13 05:38:57 +00:00
ae54dc862c
Keep the `.typos.toml` out of the repo root for better readability Also specify a version for the workflow to protect against breakage
15 lines
312 B
YAML
15 lines
312 B
YAML
name: Typos
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
run:
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Check spelling
|
|
uses: crate-ci/typos@v1.0.4
|
|
with:
|
|
config: ./.github/.typos.toml
|