From 85b2987b855449e7d45340b20726d87161879651 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 1 Apr 2022 11:38:04 +0200 Subject: [PATCH] [BUGFIX] Also scan the Rails 7 Gemfile with RuboCop (#152) --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b6d3ca..57fd121 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,8 @@ jobs: run: | bundle exec rubocop Gemfile \ gemfiles/Gemfile.rails-5.2 gemfiles/Gemfile.rails-6.0 \ - gemfiles/Gemfile.rails-6.1 lib/ test/ Rakefile + gemfiles/Gemfile.rails-6.1 gemfiles/Gemfile.rails-7.0 \ + lib/ test/ Rakefile test: name: "Tests: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}" runs-on: ubuntu-20.04