Skip to content

Commit

Permalink
ci: change test compatibility job
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasoares committed Jun 30, 2023
1 parent 5969f1d commit 34cd6a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test_engine_compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ on:

env:
GO_VERSION: 1.18
DECKARD_REDIS_PORT: 6380
DECKARD_MONGODB_PORT: 27018

permissions:
checks: write
Expand All @@ -25,12 +23,12 @@ jobs:
mongodb:
image: mongo:5.0.18
ports:
- '27018:27017'
- '27017:27017'

redis:
image: redis:5.0.14
ports:
- 6380:6379
- 6379:6379

steps:
- name: Set up Go
Expand Down Expand Up @@ -66,4 +64,4 @@ jobs:
run: go mod tidy

- name: Make test
run: make test
run: make integration-test
2 changes: 2 additions & 0 deletions docs/components.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ The storage is responsible for persisting the messages and queue configurations.
Deckard currently supports the following Storage engines:
- Memory (default)
- MongoDB
- Supported versions: `5.0.18` to `6.0.6` (we always run our integration tests against the `5.0.18` and the latest version)

The memory implementation is mainly used in tests and local development and is not recommended for production use.

Expand All @@ -17,6 +18,7 @@ The cache is currently the main component of Deckard. It is used to manage messa
Deckard currently supports the following Cache engines:
- Memory (default)
- Redis
- Supported versions: `5.0.14` to `7.0.11` (we always run our integration tests against the `5.0.14` and the latest)

The memory implementation is mainly used in tests and local development and is not recommended for production use.

Expand Down

0 comments on commit 34cd6a8

Please sign in to comment.