-
-
Notifications
You must be signed in to change notification settings - Fork 20
40 lines (38 loc) · 844 Bytes
/
Copy pathrspec.yml
File metadata and controls
40 lines (38 loc) · 844 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
40
name: Build
on:
push:
branches:
- master
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
CI: true
RAILS_ENV: test
strategy:
fail-fast: false
matrix:
ruby: ["3.4"]
gemfile: [
"gemfiles/rails81.gemfile"
]
include:
- ruby: "3.2"
gemfile: "gemfiles/rails7.gemfile"
- ruby: "3.3"
gemfile: "gemfiles/rails80.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 -f d --force-color