Skip to content

Do not try to add rails gem declaration more than once #7

Do not try to add rails gem declaration more than once

Do not try to add rails gem declaration more than once #7

Workflow file for this run

name: Tests
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- '**'
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install dependencies
run: bundle install
- name: Run tests with coverage
run: COVERAGE=true bundle exec rspec spec