Sha256: cf2f10db1a1145d8fea873f4f51ed2cb488a4143ce9205629d0ce6a34729ff6c

Contents?: true

Size: 605 Bytes

Versions: 1

Compression:

Stored size: 605 Bytes

Contents

name: Tests
on: [push, pull_request]
concurrency:
  group: ${{ github.ref }}
  cancel-in-progress: true
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        mongoid: ["6", "7", "8", "9"]
        ruby: ["3.1", "3.2", "3.3"]
    runs-on: ubuntu-latest
    services:
      mongodb:
        image: mongo
        ports: ["27017:27017"]
    env:
      MONGOID_VERSION: ${{ matrix.mongoid }}
    steps:
      - uses: actions/checkout@v3
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mongoid_ice_cube_extension-0.2.4 .github/workflows/test.yml