-
Notifications
You must be signed in to change notification settings - Fork 10
41 lines (38 loc) · 914 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
name: CI
on: [push, pull_request]
jobs:
rubocop:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'
bundler-cache: true
- name: Run test
run: bundle exec rubocop
rubies:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ ruby-head, '3.0', '2.7', '2.6' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
rm Gemfile.lock
bundle install
- name: Run test
run: bundle exec rake
- name: Install gem
run: bundle exec rake install