Update dependency rubocop-rspec to v3.3.0 #189
Workflow file for this run
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: CI | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3 | |
- name: Run bundle install | |
run: | | |
gem install bundler | |
bundle install | |
- name: Run tests | |
run: | | |
bundle exec rspec -r spec_helper | |
- name: Upload coverage to Coveralls | |
uses: coverallsapp/github-action@v2 | |
format-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Format Markdown with markdownlint | |
run: | | |
npm install -g markdownlint-cli | |
markdownlint --disable MD013 --fix . --ignore CODE_OF_CONDUCT.md | |
git add -A | |
git diff --cached --exit-code | |
format-ruby: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3 | |
- name: Install rubocop | |
run: | | |
gem install rubocop | |
gem install rubocop-rspec | |
- name: Format Ruby with rubocop | |
run: | | |
rubocop |