-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (59 loc) · 1.57 KB
/
continuous_integration.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
name: Continuous Integration
on:
push:
branches:
- master
- actions-*
tags:
- v*
pull_request:
env:
BUNDLE_CLEAN: "true"
BUNDLE_PATH: vendor/bundle
BUNDLE_JOBS: 3
BUNDLE_RETRY: 3
jobs:
specs:
name: ruby-${{ matrix.ruby }} ${{ matrix.appraisal }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: "ruby"
standardrb: true
- ruby: "3.2"
- ruby: "3.1"
- ruby: "3.0"
- ruby: "2.7"
- ruby: "2.6"
- ruby: "2.5"
- ruby: "2.4"
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Setup bundler
if: matrix.bundler != ''
run: |
gem uninstall bundler --all
gem install bundler --no-document --version ${{ matrix.bundler }}
- name: Set Appraisal bundle
if: matrix.appraisal != '' && matrix.gemfile == ''
run: |
echo "using gemfile gemfiles/${{ matrix.appraisal }}.gemfile"
bundle config set gemfile "gemfiles/${{ matrix.appraisal }}.gemfile"
cat gemfiles/${{ matrix.appraisal }}.gemfile
- name: Install bundle
run: |
bundle update
- name: Run specs
run: bundle exec rake spec
- name: Run standardrb
if: matrix.standardrb == true
run: bundle exec rake standard