Skip to content

Bump version to 2.0.1 #92

Bump version to 2.0.1

Bump version to 2.0.1 #92

Workflow file for this run

name: Ruby
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ruby: [ jruby-9.4.12.0, jruby-head ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JRuby versions
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build and test with rake
run: |
ruby extconf.rb
make
gem install rspec
rake spec