Skip to content

Commit b37fb90

Browse files
authored
Merge pull request #2 from codergeek121/tests-for-all-supported-ruby-versions
Run actions for all supported ruby versions
2 parents dbe44a8 + 41d32dc commit b37fb90

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
ruby:
17-
- '3.0.2'
17+
- '3.0.6'
18+
- '3.1.4'
19+
- '3.2.2'
1820

1921
steps:
2022
- uses: actions/checkout@v3
@@ -23,5 +25,5 @@ jobs:
2325
with:
2426
ruby-version: ${{ matrix.ruby }}
2527
bundler-cache: true
26-
- name: Run the default task
28+
- name: Run all tests
2729
run: bundle exec rake

Gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ GEM
4747

4848
PLATFORMS
4949
arm64-darwin-21
50+
x86_64-linux
5051

5152
DEPENDENCIES
5253
clai!

test/test_clai.rb

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,4 @@ class TestClai < Minitest::Test
66
def test_that_it_has_a_version_number
77
refute_nil ::CLAI::VERSION
88
end
9-
10-
def test_it_does_something_useful
11-
assert false
12-
end
139
end

0 commit comments

Comments
 (0)