-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (48 loc) · 1.2 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
name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [2.6, 2.7, "3.0", 3.1, 3.2, 3.3]
bundler-version: [2.4.19, 2.4.22, 2.5.10]
exclude:
- ruby-version: 2.6
bundler-version: 2.5.10
- ruby-version: 2.7
bundler-version: 2.5.10
env:
BUNDLER_VERSION: ${{ matrix.bundler-version }}
BUNDLE_LOCKFILE: active
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
rubygems: latest
bundler: ${{ matrix.bundler-version }}
bundler-cache: true
- name: Run tests
run: bin/rspec
lint:
runs-on: ubuntu-latest
env:
BUNDLE_LOCKFILE: active
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler-cache: true
rubygems: latest
- name: Run RuboCop
run: bin/rubocop
timeout-minutes: 2