Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Bump rubocop from 1.49.0 to 1.53.1 #80

Bump rubocop from 1.49.0 to 1.53.1

Bump rubocop from 1.49.0 to 1.53.1 #80

Workflow file for this run

name: lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: checkout
uses: actions/checkout@v3
- name: fetch ruby version
id: ruby-version
run: |
version=$(cat .ruby-version)
echo "version=${version}" >> $GITHUB_OUTPUT
- uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # [email protected]
with:
ruby-version: ${{ steps.ruby-version.outputs.version }}
bundler-cache: true
- name: lint
run: bundle exec rubocop -c .rubocop.yml src/ spec/