Skip to content

Commit

Permalink
- Add Ruby matrix to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
banjoko01 authored and tapan-sh committed Jun 20, 2024
1 parent 373ab81 commit df65e28
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2']

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.0'
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true

- name: Export ENV
Expand Down

0 comments on commit df65e28

Please sign in to comment.