Skip to content

Bump the patch-and-minor group across 1 directory with 3 updates #355

Bump the patch-and-minor group across 1 directory with 3 updates

Bump the patch-and-minor group across 1 directory with 3 updates #355

Workflow file for this run

name: Code Checks
on:
pull_request:
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run rspec
run: bundle exec rspec
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop