diff options
author | Christian Clauss <cclauss@me.com> | 2021-11-12 08:39:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-12 08:39:02 (GMT) |
commit | 102ef25fdf27504f3ac7392ce8dbfe83485fb25a (patch) | |
tree | 8a105276486cb2c9e8e9ce65aa1b5e824e524c4b /.github/workflows/linux.yml | |
parent | 2dab655765499e9b05b8f097ab446ddee8f9adca (diff) | |
download | Ninja-102ef25fdf27504f3ac7392ce8dbfe83485fb25a.zip Ninja-102ef25fdf27504f3ac7392ce8dbfe83485fb25a.tar.gz Ninja-102ef25fdf27504f3ac7392ce8dbfe83485fb25a.tar.bz2 |
Fix typos discovered by codespell (#2047)
% [`codespell --count --ignore-words-list=fo .`](https://pypi.org/project/codespell/)
```
./ninja/src/missing_deps.cc:119: dependecy ==> dependency
./ninja/src/includes_normalize-win32.cc:51: funcation ==> function
./ninja/src/eval_env.h:58: invokable ==> invocable
./ninja/src/missing_deps_test.cc:155: beacuse ==> because
./ninja/src/deps_log_test.cc:393: unparseable ==> unparsable
```
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r-- | .github/workflows/linux.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 80c88c6..3c93e00 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -13,6 +13,9 @@ jobs: image: centos:7 steps: - uses: actions/checkout@v2 + - uses: codespell-project/actions-codespell@master + with: + ignore_words_list: fo,wee - name: Install dependencies run: | curl -L -O https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4-Linux-x86_64.sh |