forked from redis/lettuce
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Action to start CI/CD pipeline and minor change to Maven artefact resolving * Set caching up for Maven; use maven-setup-action action, instead of apt-get * Include action for spellcheck * Modigy CodeCov element * New additions to the wordlist file * Polishing, removing new lines that are not necessary * Wrong branch name specified
- Loading branch information
Showing
5 changed files
with
177 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
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: | ||
- '*.md' | ||
- 'docs/**' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
!!!Spelling check failed!!! | ||
Observability | ||
CRaC | ||
JVM | ||
https | ||
io | ||
stackoverflow | ||
gitter | ||
im | ||
Javadoc | ||
api | ||
BZMPOP | ||
ZMPOP | ||
FCALL | ||
Lua | ||
redis | ||
SlotHash | ||
instantiation | ||
FailOver | ||
takeOver | ||
ReplicaTopologyProvider | ||
SimpleBatcher | ||
hostname | ||
NodeTopologyView | ||
RedisURI | ||
SslVerifyMode | ||
withSsl | ||
SMISMEMBER | ||
readonly | ||
Eval | ||
lua | ||
zrevrangestorebylex | ||
zrevrangestorebyscore | ||
XTrimArgs | ||
URI | ||
CompositeArgument | ||
arg | ||
md | ||
wg | ||
SSL | ||
RedisLabs | ||
Memorystore | ||
Elasticache | ||
CamelCased | ||
zrangebyscore | ||
zrangebyscoreWithScores | ||
Gradle | ||
http | ||
LettuceDriver | ||
Codecs | ||
JSON | ||
UTF | ||
CDI | ||
Pipelining | ||
netty | ||
scalable | ||
deserialized | ||
enum | ||
SetArgs | ||
param | ||
README | ||
sscanMultiple | ||
ReadFrom | ||
dynamicRefreshSources | ||
pingBeforeActivateConnection | ||
StatefulRedisClusterPubSubConnectionImpl's | ||
NPE | ||
codec | ||
javadoc | ||
NullPointerException | ||
RedisObservation | ||
github | ||
runtime | ||
transactional | ||
Github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: CI / CD Pipeline | ||
on: | ||
push: | ||
paths-ignore: | ||
- 'docs/**' | ||
- '**/*.md' | ||
- '**/*.rst' | ||
branches: | ||
- main | ||
- '[0-9].*' | ||
pull_request: | ||
branches: | ||
- main | ||
- '[0-9].*' | ||
schedule: | ||
- cron: '0 1 * * *' # nightly build | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
build: | ||
name: Build and Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v4 | ||
- name: Set Java up in the runner | ||
uses: actions/setup-java@v2 | ||
with: | ||
java-version: '8' | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
- name: Setup Maven | ||
uses: s4u/[email protected] | ||
with: | ||
java-version: 8 | ||
- name: Install missing dependencies to container | ||
run: | | ||
sudo apt update | ||
sudo apt install -y stunnel make git gcc | ||
- name: Maven offline | ||
run: | | ||
mvn -q dependency:go-offline | ||
- name: Clean environment | ||
run: | | ||
make cleanup | ||
env: | ||
JVM_OPTS: -Xmx3200m | ||
TERM: dumb | ||
- name: Run tests | ||
run: | | ||
make test-coverage | ||
env: | ||
JVM_OPTS: -Xmx3200m | ||
TERM: dumb | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Spellcheck Action | ||
on: | ||
pull_request: | ||
jobs: | ||
check-spelling: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Check Spelling | ||
uses: rojopolis/[email protected] | ||
with: | ||
config_path: .github/spellcheck-settings.yml | ||
task_name: Markdown |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters