-
-
Notifications
You must be signed in to change notification settings - Fork 501
74 lines (74 loc) · 2.01 KB
/
test.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
name: test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
schedule:
- cron: "0 15 * * 0"
jobs:
basic:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install && bundle exec rake test
- run: bundle install && bundle exec rake test:sinatra
env:
SINATRA: 2.2.4
- run: bundle install && bundle exec rake test:sinatra
env:
SINATRA: 3.0.6
- run: bundle install && bundle exec rake test:sinatra
if: ${{ matrix.ruby != '2.5' }}
env:
SINATRA: 3.1.0
- run: bundle install && bundle exec rake test:sinatra
if: ${{ matrix.ruby != '2.5' }}
env:
SINATRA: main
rails:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=5.2.8"
env:
RAILS: 5.2.8
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=6.0.6"
env:
RAILS: 6.0.6
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=6.1.7"
env:
RAILS: 6.1.7
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=7.0.7"
env:
RAILS: 7.0.7
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=7.1.0"
env:
RAILS: 7.1.0
- run: bundle install && bundle exec rake test:rails
name: "rake test:rails RAILS=main"
env:
RAILS: main