Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add MongoDB 6.0 and 7.0 to CI #52

Merged
merged 2 commits into from
Dec 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@ jobs:
- 3.0.6
- 3.1.4
mongo-image:
- mongo:4.2
- mongo:4.4
- mongo:5.0
include:
- { "ruby-version": 3.1.4, "mongo-image": "mongo:4.2" }
- { "ruby-version": 3.1.4, "mongo-image": "mongo:5.0" }
- { "ruby-version": 3.1.4, "mongo-image": "mongo:6.0" }
- { "ruby-version": 3.1.4, "mongo-image": "mongo:7.0" }
Comment on lines +25 to +29
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It takes too long time to complete conditions for all Ruby versions by all MongoDB versions. So I changed the configuration to run all MongoDB versions only with Ruby 3.1.

services:
mongo:
image: ${{ matrix.mongo-image }}
Expand Down
Loading