summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu-rvm.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ubuntu-rvm.yml')
-rw-r--r--.github/workflows/ubuntu-rvm.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/.github/workflows/ubuntu-rvm.yml b/.github/workflows/ubuntu-rvm.yml
deleted file mode 100644
index 4337e7d0c8..0000000000
--- a/.github/workflows/ubuntu-rvm.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: ubuntu-rvm
-
-on: [push]
-
-jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- ruby: [ 'ruby-head', 'jruby-9.2.8.0' ]
- test_tool: [ "rubygems", "bundler" ]
- steps:
- - uses: actions/checkout@master
- - run: git submodule update -i
- - name: Set up RVM
- run: |
- curl -sSL https://get.rvm.io | bash
- - name: Set up Ruby
- run: |
- source $HOME/.rvm/scripts/rvm
- rvm install ${{ matrix.ruby }} --binary
- rvm --default use ${{ matrix.ruby }}
- - name: Install dependencies
- run: |
- source $HOME/.rvm/scripts/rvm
- util/ci.sh before_script
- env:
- TEST_TOOL: ${{ matrix.test_tool }}
- - name: Run test
- run: |
- source $HOME/.rvm/scripts/rvm
- util/ci.sh script
- env:
- TEST_TOOL: ${{ matrix.test_tool }}