Skip to content

Update gemspec with URLs #42

Update gemspec with URLs

Update gemspec with URLs #42

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
ruby: [jruby, 2.3, 2.4, 2.5, 2.6, 2.7]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Build
run: bundle install --jobs 4 --retry 3
- name: Test
run: bundle exec rake test