From ab0c76b4092d01142878da82fc4f5ae84501fb0e Mon Sep 17 00:00:00 2001 From: Kyrylo Silin Date: Wed, 5 Jun 2024 13:52:53 +0300 Subject: [PATCH] Test against Ruby 3.3, 3.2, 3.1, and 3.0 --- .github/workflows/main.yml | 21 ++++++++++++--------- test/test_telebugs.rb | 4 ---- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 37a9318..2a23f22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,14 +14,17 @@ jobs: strategy: matrix: ruby: - - '3.3.0' + - "3.3" + - "3.2" + - "3.1" + - "3.0" steps: - - uses: actions/checkout@v4 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby }} - bundler-cache: true - - name: Run the default task - run: bundle exec rake + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true + - name: Run the default task + run: bundle exec rake diff --git a/test/test_telebugs.rb b/test/test_telebugs.rb index b0c948a..cc65800 100644 --- a/test/test_telebugs.rb +++ b/test/test_telebugs.rb @@ -6,8 +6,4 @@ class TestTelebugs < Minitest::Test def test_that_it_has_a_version_number refute_nil ::Telebugs::VERSION end - - def test_it_does_something_useful - assert false - end end