Skip to content

Commit

Permalink
Update CI workflow and build and install gems on TruffleRuby and JRuby
Browse files Browse the repository at this point in the history
  • Loading branch information
andrykonchin committed Sep 23, 2024
1 parent 341265c commit b7bdab5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,29 @@ jobs:
cd tmp
ruby test/run.rb
# Don't run tests on TruffleRuby and JRuby because tests don't pass on them yet.
# So check only gem installing.
install:
name: >-
Install ${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- truffleruby
- jruby
steps:
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- run: rake install

docker:
name: >-
${{ matrix.service }}
Expand Down

0 comments on commit b7bdab5

Please sign in to comment.