fix: tests syntax for Ruby 2.7 #264
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: JRuby Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_JOBS: 4 | |
BUNDLE_RETRY: 3 | |
CI: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v1 | |
with: | |
path: /home/runner/bundle | |
key: bundle-${{ hashFiles('**/gemfiles/jruby.gemfile') }}-${{ hashFiles('**/*.gemspec') }} | |
restore-keys: | | |
bundle- | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: jruby | |
- name: Bundle install | |
run: | | |
bundle config --global gemfile gemfiles/jruby.gemfile | |
bundle config path /home/runner/bundle | |
bundle install | |
bundle update | |
- name: Run Ruby Next | |
run: bundle exec rake nextify | |
- name: Run Minitest tests | |
run: | | |
bundle exec rake test | |
- name: Run RSpec tests | |
run: | | |
bundle exec rspec --force-color | |
- name: Run Minitest tests in isolation | |
run: | | |
bundle exec rake test:isolated |