-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (37 loc) · 880 Bytes
/
rspec.yml
File metadata and controls
39 lines (37 loc) · 880 Bytes
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
name: Build
on:
push:
branches:
- main
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
CI: true
strategy:
fail-fast: false
matrix:
ruby: ["3.4"]
gemfile: ["gemfiles/rails8.gemfile"]
include:
- ruby: "3.2"
gemfile: "gemfiles/rails70.gemfile"
- ruby: "3.2"
gemfile: "gemfiles/rails72.gemfile"
- ruby: "3.4"
gemfile: "gemfiles/rails8.gemfile"
- ruby: "4.0"
gemfile: "gemfiles/railsmaster.gemfile"
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: |
bundle exec rspec