Skip to content

Bump json from 2.7.1 to 2.7.2 (#181) #410

Bump json from 2.7.1 to 2.7.2 (#181)

Bump json from 2.7.1 to 2.7.2 (#181) #410

Workflow file for this run

name: ruby
"on":
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: run tests
env:
RAILS_ENV: test
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Lint
run: bundle exec rubocop
- name: Prepare test suite
run: |
bin/rails db:prepare
bin/rails assets:precompile
- name: Run Rails tests
run: bundle exec rails test
- name: Run specs
run: bundle exec rspec
- name: Run features
run: bundle exec cucumber