Skip to content

Commit 2ae9af6

Browse files
authored
Revert "[3.x] Spellcheck as part of CI (#1354)" (#1362)
This reverts commit 12d0e01.
1 parent 12d0e01 commit 2ae9af6

File tree

7 files changed

+28
-87
lines changed

7 files changed

+28
-87
lines changed

.github/spellcheck-settings.yml

-29
This file was deleted.

.github/wordlist.txt

-42
This file was deleted.

.github/workflows/linters.yml

+24
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
branches:
88
- main
99
- v2.**
10+
- v3.**
1011
pull_request: null
1112

1213
permissions: {}
@@ -142,3 +143,26 @@ jobs:
142143
echo "CURRENT =${CURRENT}"
143144
echo "EXPECTED=${EXPECTED}"
144145
test "${CURRENT}" = "${EXPECTED}"
146+
147+
spelling:
148+
name: Spelling
149+
needs:
150+
- byte_level
151+
- syntax_errors
152+
runs-on: ubuntu-latest
153+
154+
steps:
155+
- name: Checkout repository
156+
uses: actions/checkout@v3
157+
158+
- name: Cache pip
159+
uses: actions/cache@v3
160+
with:
161+
path: ~/.cache/pip
162+
key: ${{ runner.os }}-pip-codespell
163+
164+
- name: Install codespell
165+
run: pip install --user 'codespell>=2.2'
166+
167+
- name: Search for misspellings
168+
run: $(python -m site --user-base)/bin/codespell

.github/workflows/spellcheck.yml

-14
This file was deleted.

.github/workflows/stack.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
- v2.**
8+
- v3.**
89
pull_request:
910

1011
jobs:

.github/workflows/tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
- v2.**
8+
- v3.**
89
pull_request:
910

1011
concurrency:

FAQ.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ but significantly reduces bytes sent over the network and Redis memory usage.
3333

3434
Without Relay, Predis will not serialize data and will never do that by default. The reason
3535
behind this decision is that serialization is usually something that developers prefer to
36-
customize depending on their needs and can not be easily generalized when using Redis because
36+
customize depending on their needs and can not be easilygeneralized when using Redis because
3737
of the many possible access patterns for your data. This does not mean that it is impossible
3838
to have such a feature since you can leverage the extensibility of this library to define
3939
your own serialization-aware commands. You can find more details about how to do that
@@ -90,7 +90,7 @@ Predis is fast enough when Redis is located on the same machine as PHP, more on
9090
[PhpRedis](https://github.com/phpredis/phpredis) (and Relay) perform significantly better when
9191
network I/O is involved, due to their ability to compress data by ~75%. Fewer bytes and received
9292
sent over the network [means faster operations](https://akalongman.medium.com/phpredis-vs-predis-comparison-on-real-production-data-a819b48cbadb),
93-
and potentially cost savings when network traffic isn't free (e.g. AWS ElastiCache Inter-AZ transfer costs).
93+
and potentially cost savings when network traffic isn't free (e.g. AWS Elasticache Inter-AZ transfer costs).
9494

9595
## Predis is a pure-PHP implementation: it can not be fast enough! ##
9696

0 commit comments

Comments
 (0)