Skip to content

Remove macOS and Windows builds on github #43

Remove macOS and Windows builds on github

Remove macOS and Windows builds on github #43

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]
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