Skip to content

Bump dotenv from 3.1.4 to 3.1.6 in the patch-and-minor group #351

Bump dotenv from 3.1.4 to 3.1.6 in the patch-and-minor group

Bump dotenv from 3.1.4 to 3.1.6 in the patch-and-minor group #351

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