From 34ae1fb9fab5acbd5dd7124493d80fd0441ed0ae Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Thu, 18 Apr 2024 12:26:02 +0100 Subject: [PATCH] Add CI job to test IRB against the latest debug --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37ea47a91..810c27590 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,6 +48,29 @@ jobs: run: bundle exec rake test - name: Run tests in isolation run: bundle exec rake test_in_isolation + debug-test: + name: Debug compatibility test + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.3 + - name: Install dependencies + run: bundle install + - name: Install IRB + run: | + rake install + - name: Download ruby/debug + run: | + git clone https://github.com/ruby/debug + - name: Run debug tests + working-directory: ./debug + run: | + bundle install + bundle exec rake vterm-yamatanooroti: needs: ruby-versions name: >-