Skip to content

Merge pull request #65 from orien/github-actions #1

Merge pull request #65 from orien/github-actions

Merge pull request #65 from orien/github-actions #1

Workflow file for this run

---
name: Tests
on: [ push, pull_request ]
jobs:
test:
name: Test (Ruby ${{ matrix.ruby }})
runs-on: ubuntu-${{ matrix.ubuntu }}
strategy:
fail-fast: false
matrix:
ruby: [ '3.3', '3.2', '3.1', '3.0', '2.7', '2.6', '2.5', '2.4', '2.3', 'jruby-9.4' ]
ubuntu: [ 'latest' ]
include:
- { ruby: '2.2', ubuntu: '20.04' }
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake