Skip to content

Update dependency debug to v1.10.0 #397

Update dependency debug to v1.10.0

Update dependency debug to v1.10.0 #397

Workflow file for this run

name: RSpec
on:
pull_request:
paths-ignore:
- README.md
- Dockerfile
- docker-compose.yml
push:
branches:
- main
paths-ignore:
- README.md
- Dockerfile
- docker-compose.yml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rspec:
runs-on: ubuntu-latest
timeout-minutes: 10
env:
RAILS_ENV: test
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true
- name: bundle install
run: |
gem install bundler
bundle install --jobs 4 --retry 3 --path vendor/bundle
- name: run rspec
run: bundle exec rspec