Merge pull request #107 from pachkovsky/master #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- gemfile: Gemfile | |
ruby: 3.0 | |
- gemfile: Gemfile | |
ruby: truffleruby-head | |
runs-on: ubuntu-20.04 | |
steps: | |
- run: echo BUNDLE_GEMFILE=${{ matrix.gemfile }} > $GITHUB_ENV | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
bundler: ${{ matrix.bundler || 'default' }} | |
- run: bundle exec rake test |