Update dependency faraday to v2.12.2 #393
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |