File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ concurrency:
6
6
7
7
jobs :
8
8
build :
9
+ name : " Tests: Ruby ${{ matrix.ruby }} - ${{ matrix.os }}"
9
10
runs-on : ${{ matrix.os }}-latest
10
11
timeout-minutes : 10
11
12
23
24
RUBYOPT : ' -w'
24
25
JRUBY_OPTS : ' --dev'
25
26
26
- name : " Tests: Ruby ${{ matrix.ruby }} - ${{ matrix.os }}"
27
27
steps :
28
28
- name : Clone Repo
29
29
uses : actions/checkout@v4
35
35
- name : Run tests
36
36
run : bundle exec rake ci
37
37
38
+ no-extensions :
39
+ name : " Test without C extension"
40
+ runs-on : ubuntu-latest
41
+ timeout-minutes : 10
42
+ env :
43
+ RUBYOPT : ' -w'
44
+ steps :
45
+ - uses : actions/checkout@v4
46
+ - uses : ruby/setup-ruby@v1
47
+ with :
48
+ ruby-version : ruby
49
+ bundler-cache : true
50
+ - name : Run tests
51
+ run : bundle exec rake spec:ci
52
+
38
53
isolated :
39
54
name : " Test isolated"
40
55
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments