-
Notifications
You must be signed in to change notification settings - Fork 12
54 lines (52 loc) · 1.85 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
entry:
- { ruby: '2.7', mongodb: '4.4', mongoid: '6' }
- { ruby: '2.7', mongodb: '4.4', mongoid: '7' }
- { ruby: '3.0', mongodb: '4.4', mongoid: '6' }
- { ruby: '3.0', mongodb: '4.4', mongoid: '7' }
- { ruby: '3.2', mongodb: '5.0', mongoid: '7' }
- { ruby: '3.2', mongodb: '6.0', mongoid: '7' }
- { ruby: '3.1', mongodb: '4.4', mongoid: '8' }
- { ruby: '3.2', mongodb: '5.0', mongoid: '8' }
- { ruby: '3.2', mongodb: '6.0', mongoid: '8' }
- { ruby: '3.2', mongodb: '7.0', mongoid: '8' }
- { ruby: '3.3', mongodb: '6.0', mongoid: '9' }
- { ruby: '3.3', mongodb: '7.0', mongoid: '9' }
name: test (ruby=${{ matrix.entry.ruby }}, mongodb=${{ matrix.entry.mongodb }}), mongoid=${{ matrix.entry.mongoid }})
env:
MONGOID_VERSION: ${{ matrix.entry.mongoid }}
steps:
- name: Set up MongoDB ${{ matrix.entry.mongodb }}
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.entry.mongodb }}
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.entry.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec
- name: Run examples
run: bundle exec ruby examples/feed.rb
- name: Report Coverage
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true
upload-coverage:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Upload Code Coverage Report
uses: coverallsapp/github-action@v2
with:
parallel-finished: true