Skip to content
Merged
Show file tree
Hide file tree
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: 4 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
- run: bundle exec rake compile
- run: bundle exec rake test
- run: git fetch --no-tags --prune --unshallow origin +refs/heads/*:refs/remotes/origin/*
if: ${{ !!matrix.coverage }}
- run: bundle exec pronto run -f github_pr -c origin/${{ github.base_ref }}
if: ${{ !!matrix.coverage }}
env:
Expand Down Expand Up @@ -139,8 +140,8 @@ jobs:
fail-fast: false
matrix:
gemfile:
- gemfiles/mongoid_6.gemfile
- gemfiles/mongoid_7.gemfile
- gemfiles/mongoid_9.gemfile
- gemfiles/mongoid_8.gemfile
runs-on: ubuntu-latest
services:
mongodb:
Expand All @@ -152,6 +153,6 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.4
bundler-cache: true
- run: bundle exec rake compile test
9 changes: 4 additions & 5 deletions gemfiles/mongoid_7.gemfile → gemfiles/mongoid_8.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ gem "bootsnap"
gem "ruby-prof", platform: :ruby
gem "pry"
gem "pry-stack_explorer", platform: :ruby
gem "mongoid", "~> 7.0"
if RUBY_VERSION >= "3.0"
gem "libev_scheduler"
gem "evt"
end
gem "mongoid", "~> 8.0"
gem "libev_scheduler"
gem "evt"
gem "async"
gem "fiber-storage"
gem "concurrent-ruby", "1.3.4"

Expand Down
9 changes: 4 additions & 5 deletions gemfiles/mongoid_6.gemfile → gemfiles/mongoid_9.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ gem "bootsnap"
gem "ruby-prof", platform: :ruby
gem "pry"
gem "pry-stack_explorer", platform: :ruby
gem "mongoid", "~> 6.4.1"
if RUBY_VERSION >= "3.0"
gem "libev_scheduler"
gem "evt"
end
gem "mongoid", "~> 9.0"
gem "libev_scheduler"
gem "evt"
gem "async"
gem "fiber-storage"

gemspec path: "../"