-
Notifications
You must be signed in to change notification settings - Fork 15
73 lines (64 loc) · 2.05 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
---
name: CI
on: [ push, pull_request ]
jobs:
standard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6 # keep it on the lowest supported Ruby version
bundler-cache: true
- name: Run Standard
run: bundle exec standardrb
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2', '3.3' ]
rails: [ '5-2', '6-0', '6-1', '7-0', '7-1' ]
# excludes are sorted by Ruby version, then Rails version
exclude:
- ruby: 2.6 # Rails 7 requires 2.7 minimum
rails: 7-0
- ruby: 2.6 # Rails 7.1 requires 2.7 minimum
rails: 7-1
- ruby: 3.0 # Ruby 3 support for 5.2 hasn't been added
rails: 5-2
- ruby: 3.1 # Ruby 3.1 only works on the latest Rails 7 version
rails: 5-2
- ruby: 3.1
rails: 6-0
- ruby: 3.1
rails: 6-1
- ruby: 3.2 # Ruby 3.2 only works on the latest Rails 7 version
rails: 5-2
- ruby: 3.2
rails: 6-0
- ruby: 3.2
rails: 6-1
- ruby: 3.3 # Ruby 3.3 only works on the latest Rails 7 version
rails: 5-2
- ruby: 3.3
rails: 6-0
- ruby: 3.3
rails: 6-1
steps:
- uses: actions/checkout@v4
# we otherwise run into issues with different versions of actionpack / activesupport with Appraisal
- name: Remove Gemfile.lock
run: rm Gemfile.lock
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false
- name: Bundle for Appraisal
run: bundle
- name: Install Appraisal dependencies
run: bundle exec appraisal rails-${{ matrix.rails }} bundle
- name: Run tests
run: bundle exec appraisal rails-${{ matrix.rails }} bundle exec rspec