Skip to content

Commit

Permalink
💄 Rubocop GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerwillingham committed Dec 17, 2023
1 parent 1f920a8 commit e4a55de
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: RuboCop

on: [push, pull_request]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true

- name: Run RuboCop
run: bin/rubocop

0 comments on commit e4a55de

Please sign in to comment.