Revert the accidentally commits related GitHub Actions

This commit is contained in:
Hiroshi SHIBATA 2019-09-26 19:22:30 +09:00
parent 2a490d5660
commit c8f7168653
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2
2 changed files with 0 additions and 55 deletions

View File

@ -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 }}

View File

@ -1,21 +0,0 @@
on: pull_request
jobs:
macos:
runs-on: macos-latest
strategy:
matrix:
ruby: [ '2.3.x', '2.4.x', '2.5.x', '2.6.x' ]
steps:
- uses: actions/checkout@master
- name: Setup ruby
uses: actions/setup-ruby@v1
with:
version: ${{ matrix.ruby }}
architecture: 'x64'
- name: Install Dependencies
run: util/ci.sh before_script
- name: Run Test
run: util/ci.sh script
env:
TEST_TOOL: "rubygems"