We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b29f65 commit cc0a376Copy full SHA for cc0a376
.github/workflows/check.yaml
@@ -48,3 +48,18 @@ jobs:
48
# cause those comments get rendered in documentation by godoc.
49
# See https://github.com/tarantool/go-tarantool/pull/160#discussion_r858608221
50
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