name: tests on: push: pull_request: schedule: - cron: '11 11 14 * *' # at 11:11 am on the 14th of every month jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.2', '2.7', '3.0', '3.1', 'ruby-head', 'jruby-head' ] steps: - uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: bundle install --jobs 4 - name: Test with Rake run: bundle exec rake