Integrating spellcheck into CI (#1218)
* Adding spellcheck testing * words * updating version of spellcheck action
This commit is contained in:
parent
e07ae7d3b6
commit
039385bd8b
29
.github/spellcheck-settings.yml
vendored
Normal file
29
.github/spellcheck-settings.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
matrix:
|
||||||
|
- name: Markdown
|
||||||
|
expect_match: false
|
||||||
|
apsell:
|
||||||
|
lang: en
|
||||||
|
d: en_US
|
||||||
|
ignore-case: true
|
||||||
|
dictionary:
|
||||||
|
wordlists:
|
||||||
|
- .github/wordlist.txt
|
||||||
|
output: wordlist.dic
|
||||||
|
pipeline:
|
||||||
|
- pyspelling.filters.markdown:
|
||||||
|
markdown_extensions:
|
||||||
|
- markdown.extensions.extra:
|
||||||
|
- pyspelling.filters.html:
|
||||||
|
comments: false
|
||||||
|
attributes:
|
||||||
|
- alt
|
||||||
|
ignores:
|
||||||
|
- ':matches(code, pre)'
|
||||||
|
- code
|
||||||
|
- pre
|
||||||
|
- blockquote
|
||||||
|
- img
|
||||||
|
sources:
|
||||||
|
- 'README.md'
|
||||||
|
- 'FAQ.md'
|
||||||
|
- 'docs/**'
|
||||||
99
.github/wordlist.txt
vendored
Normal file
99
.github/wordlist.txt
vendored
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
ABI
|
||||||
|
ACLs
|
||||||
|
alloc
|
||||||
|
Allocator
|
||||||
|
allocators
|
||||||
|
antirez
|
||||||
|
api
|
||||||
|
APIs
|
||||||
|
ASYNC
|
||||||
|
asyncRedisContext
|
||||||
|
asyncronous
|
||||||
|
AUTOFREE
|
||||||
|
autoload
|
||||||
|
autoloader
|
||||||
|
autoloading
|
||||||
|
Autoloading
|
||||||
|
backend
|
||||||
|
backends
|
||||||
|
behaviour
|
||||||
|
boolean
|
||||||
|
CAS
|
||||||
|
Changelog
|
||||||
|
customizable
|
||||||
|
Customizable
|
||||||
|
CVE
|
||||||
|
dataset
|
||||||
|
de
|
||||||
|
deallocation
|
||||||
|
ElastiCache
|
||||||
|
extensibility
|
||||||
|
FPM
|
||||||
|
getaddrinfo
|
||||||
|
gmail
|
||||||
|
grunder
|
||||||
|
Grunder
|
||||||
|
hiredis
|
||||||
|
Hiredis
|
||||||
|
HIREDIS
|
||||||
|
hostname
|
||||||
|
IANA
|
||||||
|
IPv
|
||||||
|
IPV
|
||||||
|
keepalive
|
||||||
|
keyspace
|
||||||
|
keyspaces
|
||||||
|
KiB
|
||||||
|
libc
|
||||||
|
libev
|
||||||
|
libevent
|
||||||
|
localhost
|
||||||
|
Lua
|
||||||
|
michael
|
||||||
|
minimalistic
|
||||||
|
namespace
|
||||||
|
NOAUTOFREE
|
||||||
|
NOAUTOFREEREPLIES
|
||||||
|
NONBLOCK
|
||||||
|
Noordhuis
|
||||||
|
OpenSSL
|
||||||
|
Packagist
|
||||||
|
pcnoordhuis
|
||||||
|
PhpRedis
|
||||||
|
Pieter
|
||||||
|
pipelined
|
||||||
|
pipelining
|
||||||
|
pluggable
|
||||||
|
Predis
|
||||||
|
PRERELEASE
|
||||||
|
printf
|
||||||
|
PSR
|
||||||
|
PSUBSCRIBE
|
||||||
|
rb
|
||||||
|
Readme
|
||||||
|
README
|
||||||
|
rebalanced
|
||||||
|
rebalancing
|
||||||
|
redis
|
||||||
|
Redis
|
||||||
|
redisAsyncContext
|
||||||
|
redisContext
|
||||||
|
redisOptions
|
||||||
|
redisReader
|
||||||
|
reusability
|
||||||
|
REUSEADDR
|
||||||
|
runtime
|
||||||
|
Sanfilippo
|
||||||
|
SHA
|
||||||
|
sharding
|
||||||
|
SONAME
|
||||||
|
SSL
|
||||||
|
struct
|
||||||
|
stunnel
|
||||||
|
subelements
|
||||||
|
TCP
|
||||||
|
TLS
|
||||||
|
unparsed
|
||||||
|
UNSPEC
|
||||||
|
URI
|
||||||
|
variadic
|
||||||
14
.github/workflows/spellcheck.yml
vendored
Normal file
14
.github/workflows/spellcheck.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
name: spellcheck
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
jobs:
|
||||||
|
check-spelling:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Check Spelling
|
||||||
|
uses: rojopolis/spellcheck-github-actions@0.33.1
|
||||||
|
with:
|
||||||
|
config_path: .github/spellcheck-settings.yml
|
||||||
|
task_name: Markdown
|
||||||
@ -302,7 +302,7 @@ void redisFree(redisContext *c);
|
|||||||
This function immediately closes the socket and then frees the allocations done in
|
This function immediately closes the socket and then frees the allocations done in
|
||||||
creating the context.
|
creating the context.
|
||||||
|
|
||||||
### Sending commands (cont'd)
|
### Sending commands (continued)
|
||||||
|
|
||||||
Together with `redisCommand`, the function `redisCommandArgv` can be used to issue commands.
|
Together with `redisCommand`, the function `redisCommandArgv` can be used to issue commands.
|
||||||
It has the following prototype:
|
It has the following prototype:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user