-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (52 loc) · 1.31 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
env:
RUBY_VERSION: 3.2.2
name: RichEnums CI
on:
pull_request:
paths-ignore:
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- README.md
push:
paths-ignore:
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- README.md
jobs:
rspec-test:
name: Run tests (ruby ${{ matrix.ruby }}, rails ${{ matrix.rails }})
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- ruby: '3.2'
rails: '7.1'
- ruby: '3.2'
rails: '7.0'
- ruby: '3.2'
rails: '6.1'
- ruby: '3.1'
rails: '6.1'
env:
BUNDLE_GEMFILE: gemfiles/activerecord_${{ matrix.rails }}.gemfile
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Gem cache
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-use-ruby-${{ hashFiles('**/Gemfile.lock') }}
- name: Install dependencies
run: |
gem install bundler --version 2.3.25 --no-document
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake spec