-
Notifications
You must be signed in to change notification settings - Fork 188
54 lines (53 loc) · 1.75 KB
/
ruby.yml
File metadata and controls
54 lines (53 loc) · 1.75 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
name: Ruby
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * 3" # At 08:00 on Wednesday # https://crontab.guru/#0_8_*_*_3
push:
branches:
- master
tags:
- v*.*.*
pull_request:
types: [opened, synchronize]
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# | rails | rails EOL | minruby | maxruby |
# |-------+-----------+---------+---------+
# | 6.1 | 10/2024 | 2.5 | 3.3 |
# | 7.0 | 4/2025 | 2.7 | 3.3 |
# | 7.1 | 10/2025 | 2.7 | |
# | 7.2 | 8/2026 | 3.1 | |
# | 8.0 | 11/2026 | 3.2 | |
# | 8.1 | 10/2027 | 3.2 | |
include:
- { ruby: '3.0', gemfile: 'gemfiles/rails_6.1.gemfile' }
- { ruby: '3.1', gemfile: 'gemfiles/rails_7.0.gemfile' }
- { ruby: '3.2', gemfile: 'gemfiles/rails_7.1.gemfile' }
- { ruby: '3.2', gemfile: 'gemfiles/rails_7.2.gemfile' }
# Active Rails
- { ruby: '3.3', gemfile: 'gemfiles/rails_8.0.gemfile' }
- { ruby: '3.4', gemfile: 'gemfiles/rails_8.0.gemfile' }
- { ruby: '3.4', gemfile: 'gemfiles/rails_8.1.gemfile' }
- { ruby: '4.0', gemfile: 'gemfiles/rails_8.1.gemfile' }
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
name: Ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake spec