Skip to content

Bump capybara from 3.39.0 to 3.39.1 #577

Bump capybara from 3.39.0 to 3.39.1

Bump capybara from 3.39.0 to 3.39.1 #577

Workflow file for this run

name: Ruby
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the stack
run: docker-compose up -d db-test
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: RAILS_ENV=test bundle exec rake db:create
- run: RAILS_ENV=test bundle exec rake db:schema:load
- run: bundle exec rake
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Lint with rubocop
run: |
bundle exec rubocop -c .rubocop.yml