File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ concurrency:
66
77jobs :
88 build :
9+ name : " Tests: Ruby ${{ matrix.ruby }} - ${{ matrix.os }}"
910 runs-on : ${{ matrix.os }}-latest
1011 timeout-minutes : 10
1112
2324 RUBYOPT : ' -w'
2425 JRUBY_OPTS : ' --dev'
2526
26- name : " Tests: Ruby ${{ matrix.ruby }} - ${{ matrix.os }}"
2727 steps :
2828 - name : Clone Repo
2929 uses : actions/checkout@v4
3535 - name : Run tests
3636 run : bundle exec rake ci
3737
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+
3853 isolated :
3954 name : " Test isolated"
4055 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments