-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
67 lines (62 loc) · 1.73 KB
/
build.yml
File metadata and controls
67 lines (62 loc) · 1.73 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Build
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
strategy:
fail-fast: false
matrix:
ruby:
- jruby-9.4
- truffleruby
- "4.0"
- "3.4"
- "3.3"
- "3.2"
- "3.1"
rails:
- "7.0"
- "7.1"
- "7.2"
- "8.0"
- main
exclude:
- { ruby: jruby-9.4, rails: "7.1" }
- { ruby: jruby-9.4, rails: "7.2" }
- { ruby: jruby-9.4, rails: "8.0" }
- { ruby: jruby-9.4, rails: main }
# Rails >= 8.0 requires Ruby 3.2
- { ruby: "3.1", rails: "8.0" }
- { ruby: "3.1", rails: "main" }
# Rails >= 8.1 requires Ruby 3.3
- { ruby: "3.2", rails: "main" }
# 2025-10-23 There's an incompatibility between truffleruby and rails edge Git ref
# results in a "NoMethodError: undefined method `[]' for class Fiber" error whilst running specs
- { ruby: truffleruby, rails: "main" }
runs-on: 'ubuntu-latest'
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.rails }}.gemfile
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup project
run: bundle install
- name: Run test
run: bundle exec rake all_specs
standard:
name: Run standard
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
- name: Setup project
run: bundle install
- name: Run test
run: bundle exec rake standard