From b3ac79b9b0cf5b60677664e40ffd6c030008de1b Mon Sep 17 00:00:00 2001 From: Darin Webb Date: Wed, 2 Oct 2024 22:52:58 -0500 Subject: [PATCH] add tests for ruby 3.3 --- .github/workflows/pr-verify.yml | 35 ++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/.github/workflows/pr-verify.yml b/.github/workflows/pr-verify.yml index 4eb4dff..105bc91 100644 --- a/.github/workflows/pr-verify.yml +++ b/.github/workflows/pr-verify.yml @@ -29,19 +29,22 @@ jobs: - name: Run tests run: bundle exec rake test - # Test on latest Ruby - # test_3_3: - # runs-on: ubuntu-latest - - # steps: - # - name: Checkout code - # uses: actions/checkout@v3 - - # - name: Set up Ruby - # uses: ruby/setup-ruby@v1 - # with: - # ruby-version: 3.3 - # bundler-cache: true - - # - name: Run tests - # run: rake test \ No newline at end of file + #Test on latest Ruby + test_3_3: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.3 + bundler-cache: true + + - name: Install gems + run: bundle install + + - name: Run tests + run: rake test \ No newline at end of file