Automated: Bump gem version to 0.13.4 for future releases. (#518) #182
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
on: [push, pull_request] | |
name: Test | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
rvm: | |
- 2.7 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: ruby/setup-ruby@v1 | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/Gemfile | |
with: | |
ruby-version: ${{ matrix.rvm }} | |
bundler-cache: true | |
# Run bundle install outside the workspace to keep gems out of the | |
# repo checkout. | |
working-directory: ${{ runner.temp }} | |
- run: | | |
bundle exec rake | |
# TODO: migrate Travis settings below: | |
# notifications: | |
# email: | |
# recipients: | |
# - [email protected] | |
# on_success: change | |
# on_failure: change | |