Skip to content

Commit cc0a376

Browse files
vr009oleg-jukovec
authored andcommitted
CI: add codespell job
Codespell job will check all typos in repo after push and pull request event.
1 parent 5b29f65 commit cc0a376

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/check.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,18 @@ jobs:
4848
# cause those comments get rendered in documentation by godoc.
4949
# See https://github.com/tarantool/go-tarantool/pull/160#discussion_r858608221
5050
args: -E goimports -D errcheck
51+
52+
codespell:
53+
runs-on: ubuntu-latest
54+
if: |
55+
github.event_name == 'push' ||
56+
github.event_name == 'pull_request' &&
57+
github.event.pull_request.head.repo.full_name != github.repository
58+
steps:
59+
- uses: actions/checkout@master
60+
61+
- name: Install codespell
62+
run: pip3 install codespell
63+
64+
- name: Run codespell
65+
run: make codespell

0 commit comments

Comments
 (0)