-
Notifications
You must be signed in to change notification settings - Fork 476
43 lines (41 loc) · 1022 Bytes
/
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
name: CI
on:
- push
jobs:
build:
name: Ruby ${{ matrix.version }} ${{ matrix.gemfile }}
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
strategy:
matrix:
version:
- "2.6"
- "2.7"
- "3.0"
gemfile:
- Gemfile_ar41
- Gemfile_ar50
- Gemfile_ar51
- Gemfile_ar60
- Gemfile_ar_main
exclude:
- version: "2.7"
gemfile: Gemfile_ar41
- version: "3.0"
gemfile: Gemfile_ar41
steps:
- uses: actions/checkout@v2
- name: Remove Gemfile.lock
run: |
rm -f ${GITHUB_WORKSPACE}/Gemfile.lock
- name: Set up Ruby ${{ matrix.version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.version }}
- name: Run Tests
run: |
bundle config set --with docs
bundle config set ignore_messages true
bundle
bundle exec rake test