mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
4372d00ea9
# Description Moves the `typos` config to the repository root directory. This allows one to run `typos` locally and have the config used automatically. Currently, one has to instead run `typos -c .github/.typos.toml`.
14 lines
259 B
YAML
14 lines
259 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@v4
|
|
|
|
- name: Check spelling
|
|
uses: crate-ci/typos@v1.18.2
|