Skip to content

Commit

Permalink
Add a workflow to ensure the gem builds fine on TruffleRuby
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Nov 28, 2023
1 parent c58e30c commit 9b41750
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/truffleruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: TruffleRuby

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
truffleruby:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: truffleruby-head
bundler-cache: true
- name: Test installing the gem on TruffleRuby
run: |
bundle exec rake compile
bundle exec rake build
gem install pkg/debug-*.gem

0 comments on commit 9b41750

Please sign in to comment.