We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 341265c commit b7bdab5Copy full SHA for b7bdab5
.github/workflows/ci.yml
@@ -73,6 +73,29 @@ jobs:
73
cd tmp
74
ruby test/run.rb
75
76
+ # Don't run tests on TruffleRuby and JRuby because tests don't pass on them yet.
77
+ # So check only gem installing.
78
+ install:
79
+ name: >-
80
+ Install ${{ matrix.ruby }}
81
+ runs-on: ubuntu-latest
82
+ strategy:
83
+ fail-fast: false
84
+ matrix:
85
+ ruby:
86
+ - truffleruby
87
+ - jruby
88
+ steps:
89
+ - uses: actions/checkout@v4
90
+
91
+ - name: Set up Ruby
92
+ uses: ruby/setup-ruby@v1
93
+ with:
94
+ ruby-version: ${{ matrix.ruby }}
95
+ bundler-cache: true
96
97
+ - run: rake install
98
99
docker:
100
name: >-
101
${{ matrix.service }}
0 commit comments