Skip to content

Commit

Permalink
Include Ruby 3.2 and 3.3 tests and change run to 10 iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
Souravgoswami committed Oct 26, 2024
1 parent 3c7cb03 commit b2341af
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Run rake install
run: rake install
- name: Run tests
run: linuxstat.rb 20
run: linuxstat.rb 10

- uses: actions/checkout@v2
- name: Test LinuxStat with Ruby 2.5
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Run rake install
run: rake install
- name: Run tests
run: linuxstat.rb 20
run: linuxstat.rb 10

- uses: actions/checkout@v2
- name: Test LinuxStat with Ruby 2.7
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Run rake install
run: rake install
- name: Run tests
run: linuxstat.rb 20
run: linuxstat.rb 10

- uses: actions/checkout@v2
- name: Test LinuxStat with Ruby 3.0
Expand All @@ -59,4 +59,28 @@ jobs:
- name: Run rake install
run: rake install
- name: Run tests
run: linuxstat.rb 20
run: linuxstat.rb 10

- uses: actions/checkout@v4
- name: Test LinuxStat with Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Install dependencies
run: bundle install
- name: Run rake install
run: rake install
- name: Run tests
run: linuxstat.rb 10

- uses: actions/checkout@v4
- name: Test LinuxStat with Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3
- name: Install dependencies
run: bundle install
- name: Run rake install
run: rake install
- name: Run tests
run: linuxstat.rb 10

0 comments on commit b2341af

Please sign in to comment.