Skip to content

build(deps): bump rubocop from 1.66.1 to 1.67.0 #36

build(deps): bump rubocop from 1.66.1 to 1.67.0

build(deps): bump rubocop from 1.66.1 to 1.67.0 #36

Workflow file for this run

name: Pull Requests
on:
pull_request:
branches: ["master"]
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "3.3"
- "3.2"
- "3.1"
- "3.0"
include:
- ruby: "3.2"
coverage: "true"
name: Test with ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Rubocop
run: bundle exec rubocop lib
- name: Run Test
run: bundle exec rspec
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}