Skip to content

Update webmock 3.14.0 → 3.23.0 (minor) #231

Update webmock 3.14.0 → 3.23.0 (minor)

Update webmock 3.14.0 → 3.23.0 (minor) #231

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.0'
- '2.7'
- '2.6'
- '2.5'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: "${{matrix.ruby}}"
- name: Install dependencies and run RSpec
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rspec
rubocop:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.0'
- '2.7'
- '2.6'
- '2.5'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: "${{matrix.ruby}}"
- name: Install dependencies and run rubocop"
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rubocop