Skip to content

Commit 5e86ea7

Browse files
authored
Merge pull request #61 from kenhys/update-ci
ci: Add Ruby 3.2/3.3/3.4 for CI
2 parents 8336859 + 1e54d6a commit 5e86ea7

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,27 @@ on:
1111

1212
jobs:
1313
test:
14-
runs-on: ubuntu-18.04
14+
runs-on: ubuntu-20.04
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
ruby: [1.9, '2.0', 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, jruby-9.1, jruby-9.2]
18+
ruby: [1.9, '2.0', 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3, 3.4, jruby-9.1, jruby-9.2, jruby-9.3, jruby-9.4]
1919
gemfile: [no-deps, json-latest, json-old, json-pure]
2020
exclude:
21-
- ruby: '3.0'
22-
gemfile: json-old
23-
- ruby: 3.1
24-
gemfile: json-old
2521
- ruby: 1.9
2622
gemfile: json-latest
2723
- ruby: 1.9
2824
gemfile: json-pure
25+
- ruby: '3.0'
26+
gemfile: json-old
27+
- ruby: 3.1
28+
gemfile: json-old
29+
- ruby: 3.2
30+
gemfile: json-old
31+
- ruby: 3.3
32+
gemfile: json-old
33+
- ruby: 3.4
34+
gemfile: json-old
2935

3036
steps:
3137
- name: Setup Ruby

0 commit comments

Comments
 (0)