Merge pull request #59 from mongomapper/add-mongo-8-0 #26
This file contains hidden or 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
| name: Ruby | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby-version: | |
| - jruby-9.4 | |
| - 2.4.10 | |
| - 2.5.9 | |
| - 2.6.10 | |
| - 2.7.8 | |
| - 3.0.6 | |
| - 3.1.4 | |
| - 3.2.2 | |
| - 3.3.0 | |
| mongo-image: | |
| - mongo:4.4 | |
| include: | |
| - { "ruby-version": 3.3.0, "mongo-image": "mongo:4.2" } | |
| - { "ruby-version": 3.3.0, "mongo-image": "mongo:5.0" } | |
| - { "ruby-version": 3.3.0, "mongo-image": "mongo:6.0" } | |
| - { "ruby-version": 3.3.0, "mongo-image": "mongo:7.0" } | |
| - { "ruby-version": 3.3.0, "mongo-image": "mongo:8.0" } | |
| services: | |
| mongo: | |
| image: ${{ matrix.mongo-image }} | |
| ports: | |
| - 27017:27017 | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v2 | |
| - name: Remove Gemfile.lock prepared for development | |
| run: "rm Gemfile.lock" | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "${{ matrix.ruby-version }}" | |
| - name: Install dependencies | |
| run: "bundle install --without guard" | |
| - name: Run tests | |
| run: "bundle exec rake" |