Skip to content

Merge pull request #699 from circleci-tools/dependabot/bundler/addres… #1293

Merge pull request #699 from circleci-tools/dependabot/bundler/addres…

Merge pull request #699 from circleci-tools/dependabot/bundler/addres… #1293

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7.x', '2.6.x', '2.5.x']
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install bundler
run: gem install bundler
- name: Install dependencies
run: bundle install --jobs 4
- name: Run test
run: bundle exec rspec