-
Notifications
You must be signed in to change notification settings - Fork 42
45 lines (37 loc) · 969 Bytes
/
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, jruby-9.1, jruby-9.2, jruby-9.3, jruby-9.4]
env: [NEW_RAILS, OLD_RAILS]
exclude:
- ruby: '2.0'
env: NEW_RAILS
- ruby: 2.1
env: NEW_RAILS
- ruby: 2.2
env: NEW_RAILS
steps:
- name: Setup
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: actions/checkout@v2
- name: Environment
run: echo "${{ matrix.env }}=1" >> $GITHUB_ENV
- name: Install
run: |
echo NEW_RAIS=$NEW_RAILS OLD_RAILS=$OLD_RAILS
bundle install --without docs
- name: Test
run: bundle exec rake release:test