Skip to content

Commit

Permalink
Add GitHub Action CI support for Ruby 3.1
Browse files Browse the repository at this point in the history
Signed-off-by: daipom <[email protected]>
  • Loading branch information
daipom committed Feb 15, 2022
1 parent eed39b1 commit 6e3833d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@ name: Unit test
jobs:
test:
runs-on: [ windows-latest ]
name: Test on Windows Server
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.1' ]
name: Test on Windows Server with Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: ridk exec bundle install
- name: Run tests
Expand Down

0 comments on commit 6e3833d

Please sign in to comment.