-
Notifications
You must be signed in to change notification settings - Fork 258
36 lines (34 loc) · 928 Bytes
/
rspec.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
name: RSpec
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
gemfile: [ rails-5.1, rails-5.2, rails-6.0, rails-6.1 ]
ruby: [ '2.7' ]
include:
- gemfile: rails-7.0
ruby: '2.7'
- gemfile: rails-7.0
ruby: '3.2'
- gemfile: rails-7.0-propshaft
ruby: '3.2'
- gemfile: rails-7.1
ruby: '3.2'
- gemfile: rails-7.1-propshaft
ruby: '3.2'
- gemfile: rails-7.2
ruby: '3.3'
- gemfile: rails-7.2-propshaft
ruby: '3.3'
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake