Skip to content

added comments to "it" #12

added comments to "it"

added comments to "it" #12

Workflow file for this run

name: Build, run tests and checks
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
rubocop:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.1"
- name: Install dependencies
run: bundle install
- name: Run RuboCop
run: bundle exec rubocop
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3.1"
- name: Install dependencies
run: bundle install
- name: Run RuboCop
run: bundle exec bin/bddsm