Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6']
ruby: [ '2.4', '2.5', '2.6', '3.1']
name: Test Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ 'jruby-9.2.9.0', 'jruby-head' ]
ruby: [ 'jruby' ]
name: Test Ruby ${{ matrix.ruby }}
steps:
- name: Install libraries
run: sudo apt install haveged
- uses: actions/checkout@v2
- name: Set up RVM
- name: Set up RVM Package
run: |
curl -sSL https://get.rvm.io | bash
- name: Set up Ruby
run: |
source $HOME/.rvm/scripts/rvm
rvm install ${{ matrix.ruby }} --binary
rvm install ${{ matrix.ruby }}
rvm --default use ${{ matrix.ruby }}
- name: Install dependencies
run: |
Expand Down