mirror of
https://github.com/nushell/nushell.git
synced 2025-01-14 02:08:51 +01: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
16 lines
312 B
YAML
16 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
|