Skip to content

Update dependency rubocop to v1.71.0 (#56) #200

Update dependency rubocop to v1.71.0 (#56)

Update dependency rubocop to v1.71.0 (#56) #200

Workflow file for this run

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