Skip to content

Commit

Permalink
Merge 23dd147 into 81c9ca2
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Aug 10, 2019
2 parents 81c9ca2 + 23dd147 commit 3260b5e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ubuntu-rvm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ubuntu-rvm

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ 'jruby-head', 'jruby-9.2.4.0', 'ruby-head' ]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
run: |
sudo apt-get install software-properties-common
sudo apt-add-repository -y ppa:rael-gc/rvm
sudo apt-get update
sudo apt-get install rvm
sudo rvm install ${{ matrix.ruby }}
sudo rvm --default use ${{ matrix.ruby }}
- name: Install dependencies
run: gem install minitest
- name: Run test
run: ruby -Ilib exe/rake

0 comments on commit 3260b5e

Please sign in to comment.