Skip to content

Bump webmock from 3.26.1 to 3.26.2 #37

Bump webmock from 3.26.1 to 3.26.2

Bump webmock from 3.26.1 to 3.26.2 #37

Workflow file for this run

name: Lint and Test
on:
push:
branches-ignore:
- main
workflow_dispatch: {}
env:
RAILS_ENV: test
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
ruby-version: ['3.4']
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop
test:
runs-on: ubuntu-latest
needs: lint
strategy:
fail-fast: true
matrix:
ruby-version: ['3.4']
steps:
- uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec spec