Skip to content

Commit

Permalink
Merge pull request #1 from telebugs/github-actions-build-matrix
Browse files Browse the repository at this point in the history
Test against Ruby 3.3, 3.2, 3.1, and 3.0
  • Loading branch information
kyrylo committed Jun 5, 2024
2 parents a597e6e + ab0c76b commit 17a4909
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 0 additions & 4 deletions test/test_telebugs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 17a4909

Please sign in to comment.