File tree 2 files changed +34
-26
lines changed
2 files changed +34
-26
lines changed Original file line number Diff line number Diff line change 1
1
name : Main
2
2
3
3
on :
4
- - push
5
- - pull_request
4
+ - push
5
+ - pull_request
6
6
7
7
jobs :
8
8
ci :
9
9
strategy :
10
10
fail-fast : false
11
11
matrix :
12
12
ruby :
13
- - ' 2.7.0'
14
- - ' 3.0'
15
- - ' 3.1'
16
- - ' 3.2'
17
- - head
18
- - truffleruby-head
13
+ - " 3.2"
14
+ - " 3.3"
15
+ - head
16
+ - truffleruby-head
17
+ rubyopt :
18
+ - " "
19
+ - " --yjit"
20
+ - " --enable=frozen-string-literal"
21
+ include :
22
+ - ruby : " 2.7"
23
+ rubyopt : " "
24
+ - ruby : " 2.7"
25
+ rubyopt : " --enable=frozen-string-literal"
26
+
19
27
name : CI
20
28
runs-on : ubuntu-latest
21
29
env :
22
30
CI : true
23
- RUBYOPT : " --enable=frozen-string-literal --yjit"
24
31
# TESTOPTS: --verbose
25
32
steps :
26
- - uses : actions/checkout@master
27
- - uses : ruby/setup-ruby@v1
28
- with :
29
- bundler-cache : true
30
- ruby-version : ${{ matrix.ruby }}
31
- - name : Test
32
- run : bundle exec rake test
33
+ - uses : actions/checkout@master
34
+ - uses : ruby/setup-ruby@v1
35
+ with :
36
+ bundler-cache : true
37
+ ruby-version : ${{ matrix.ruby }}
38
+ - name : Test
39
+ run : bundle exec rake test
40
+ env :
41
+ RUBYOPT : ${{ matrix.rubyopt }}
33
42
34
43
check :
35
44
name : Check
36
45
runs-on : ubuntu-latest
37
46
env :
38
47
CI : true
39
48
steps :
40
- - uses : actions/checkout@master
41
- - uses : ruby/setup-ruby@v1
42
- with :
43
- bundler-cache : true
44
- ruby-version : ' 3.2'
45
- - name : Check
46
- run : |
47
- bundle exec rake stree:check
48
- bundle exec rubocop
49
+ - uses : actions/checkout@master
50
+ - uses : ruby/setup-ruby@v1
51
+ with :
52
+ bundler-cache : true
53
+ - name : Check
54
+ run : |
55
+ bundle exec rake stree:check
56
+ bundle exec rubocop
Original file line number Diff line number Diff line change 1
- 3.2.0
1
+ 3.3.6
You can’t perform that action at this time.
0 commit comments