Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Bump the rubocop-dependencies group with 1 update #149

Bump the rubocop-dependencies group with 1 update

Bump the rubocop-dependencies group with 1 update #149

Workflow file for this run

# https://docs.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: Lint
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
pull_request: null # This enables to run on each PRs
jobs:
rubocop:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ruby: ['3.2']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake rubocop