-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (93 loc) · 2.63 KB
/
ci.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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: CI
on:
- pull_request
permissions:
contents: read
jobs:
test:
name: "Ruby ${{ matrix.ruby }}, Rails ${{ matrix.gemfile }}"
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["2.6", "2.7", "3.0", "3.1", "3.2", "3.3", "jruby-head"]
gemfile: ["4.2", "5.0", "5.1", "5.2", "6.0", "6.1", "7.0", "7.1"]
exclude:
- gemfile: "4.2"
ruby: "3.0"
- gemfile: "4.2"
ruby: "3.1"
- gemfile: "4.2"
ruby: "3.2"
- gemfile: "4.2"
ruby: "3.3"
- gemfile: "4.2"
ruby: "jruby-head"
- gemfile: "5.0"
ruby: "3.0"
- gemfile: "5.0"
ruby: "3.1"
- gemfile: "5.0"
ruby: "3.2"
- gemfile: "5.0"
ruby: "3.3"
- gemfile: "5.0"
ruby: "jruby-head"
- gemfile: "5.1"
ruby: "3.0"
- gemfile: "5.1"
ruby: "3.1"
- gemfile: "5.1"
ruby: "3.2"
- gemfile: "5.1"
ruby: "3.3"
- gemfile: "5.1"
ruby: "jruby-head"
- gemfile: "5.2"
ruby: "3.0"
- gemfile: "5.2"
ruby: "3.1"
- gemfile: "5.2"
ruby: "3.2"
- gemfile: "5.2"
ruby: "3.3"
- gemfile: "5.2"
ruby: "jruby-head"
- gemfile: "6.0"
ruby: "3.2"
- gemfile: "6.0"
ruby: "3.3"
- gemfile: "6.1"
ruby: "3.2"
- gemfile: "6.1"
ruby: "3.3"
- gemfile: "7.0"
ruby: "2.5"
- gemfile: "7.0"
ruby: "2.6"
- gemfile: "7.0"
ruby: "2.7"
- gemfile: "7.1"
ruby: "2.5"
- gemfile: "7.1"
ruby: "2.6"
- gemfile: "7.1"
ruby: "2.7"
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.gemfile }}.gemfile
RAILS_ENV: test
steps:
- uses: actions/checkout@v4
- name: "Install Ruby ${{ matrix.ruby }}"
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
# uses: ruby/setup-ruby@v1
uses: ruby/setup-ruby@v1
with:
bundler: 1
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run specs
run: bundle exec rspec
- name: Run standard.rb
run: bundle exec rake standard
if: ${{ ! startsWith(matrix.ruby, '2.') }}