-
-
Notifications
You must be signed in to change notification settings - Fork 367
60 lines (49 loc) · 1.2 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
name: split
on: [push]
jobs:
test:
strategy:
matrix:
ruby: ["3.4", "3.3", "3.2", "3.1", "3.0", "2.7"]
rails: ["8.0", "7.2", "7.1", "6.1"]
exclude:
- rails: "6.1"
ruby: "3.4"
- rails: "7.2"
ruby: "2.7"
- rails: "7.2"
ruby: "3.0"
- rails: "8.0"
ruby: "2.7"
- rails: "8.0"
ruby: "3.0"
- rails: "8.0"
ruby: "3.1"
runs-on: ubuntu-latest
services:
redis:
image: redis
ports: ["6379:6379"]
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
RAILS_VERSION: ${{ matrix.rails }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
bundle install --jobs 4 --retry 3
- name: Display Ruby version
run: ruby -v
- name: Test
run: bundle exec rspec
env:
REDIS_URL: redis:6379
- name: Rubocop
run: bundle exec rubocop