1 parent a8d7b21 commit 772f377Copy full SHA for 772f377
1 file changed
.github/workflows/ci.yml
@@ -1,6 +1,9 @@
1
+---
2
name: CI
3
-on: [push, pull_request]
4
+on:
5
+ - push
6
+ - pull_request
7
8
jobs:
9
lint:
@@ -17,15 +20,19 @@ jobs:
17
20
- name: rubocop
18
21
timeout-minutes: 5
19
22
run: bundle exec rubocop -c .rubocop.yml
-
23
test:
24
runs-on: ubuntu-latest
25
continue-on-error: ${{ matrix.experimental }}
26
strategy:
27
fail-fast: false
28
matrix:
- ruby: ['2.5', '2.6', '2.7', '3.0']
- experimental: [false]
29
+ ruby:
30
+ - '3.3'
31
+ - '3.4'
32
+ - '3.5'
33
+ - '4.0'
34
+ experimental:
35
+ - false
36
steps:
37
- uses: actions/checkout@v2
38
- uses: ruby/setup-ruby@v1
0 commit comments