-
Notifications
You must be signed in to change notification settings - Fork 337
77 lines (74 loc) · 1.71 KB
/
build.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
name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
services:
redis:
image: redis
ports:
- 6379:6379
memcached:
image: memcached
ports:
- 11211:11211
strategy:
matrix:
ruby:
- 3.1.2
- 3.0.4
- 2.7.6
- 2.6.10
- 2.5.8
gemfile:
- rack_3
- rack_2
- rack_1
- rails_7_0
- rails_6_1
- rails_6_0
- rails_5_2
- rails_4_2
- dalli3
- dalli2
- redis_5
- redis_4
- connection_pool_dalli
- active_support_redis_cache_store
- active_support_redis_cache_store_pooled
- redis_store
- active_support_redis_store
exclude:
- gemfile: rack_1
ruby: 3.1.2
- gemfile: rails_5_2
ruby: 3.1.2
- gemfile: rails_4_2
ruby: 3.1.2
- gemfile: dalli2
ruby: 3.1.2
- gemfile: rack_1
ruby: 3.0.4
- gemfile: rails_5_2
ruby: 3.0.4
- gemfile: rails_4_2
ruby: 3.0.4
- gemfile: dalli2
ruby: 3.0.4
- gemfile: rack_1
ruby: 2.7.6
- gemfile: rails_4_2
ruby: 2.7.6
- gemfile: rails_7_0
ruby: 2.6.10
- gemfile: rails_7_0
ruby: 2.5.8
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake