Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Build & Test

Build & Test #862

Workflow file for this run

name: Build & Test
'on':
push:
branches:
- "**"
pull_request:
branches:
- "**"
schedule:
- cron: 0 16 * * *
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rvm:
- 2.4.4
- truffleruby
- 2.4
- 2.5
- 2.6
- 2.7
- 3.0
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '${{ matrix.rvm }}'
- name: Install dependencies
run: bundle install --jobs=3 --retry=3
- name: Run tests
run: |
gem build *.gemspec
gem install *.gem
rake test