From 2d862a11f4b845671f9dc019436771228beac3e1 Mon Sep 17 00:00:00 2001 From: Ben Langfeld Date: Tue, 2 Jan 2024 12:31:12 -0300 Subject: [PATCH] Run Rubocop in GH Actions not CodeClimate Codeclimate is really restrictive on Rubocop versions and plugins, preventing us from upgrading properly. --- .codeclimate.yml | 3 +-- .github/workflows/test.yml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.codeclimate.yml b/.codeclimate.yml index bf4a90b9..093c5bae 100644 --- a/.codeclimate.yml +++ b/.codeclimate.yml @@ -1,8 +1,7 @@ --- engines: rubocop: - enabled: true - channel: rubocop-0-49 + enabled: false ratings: paths: - "**.rb" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad8f36d1..c94f6c7c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,3 +51,4 @@ jobs: run: sudo systemctl start mysql.service - run: bin/setup - run: bundle exec rake + - run: bundle exec rubocop --parallel