# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Ruby
on:
push: pull_request: schedule: - cron: "0 4 * * *"
jobs:
test: runs-on: ubuntu-latest strategy: matrix: ruby-version: [<%= RUBY_VERSION %>] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Run tests run: bundle exec rake ci