From 78dbdaec5f2f3941065fc1320550731f1e885014 Mon Sep 17 00:00:00 2001 From: Jakob Skjerning Date: Mon, 8 Dec 2025 15:31:02 +0100 Subject: [PATCH] Run just the tests as part of the "Run tests" step Running `rake` without specifying a task may run additional tasks, and it actually runs the linter as well. We have a separate step for linting, so we should only run the tests here. --- .github/workflows/ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index e7494cf..26cdcc9 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -33,4 +33,4 @@ jobs: bundler-cache: true # runs 'bundle install' and caches installed gems automatically bundler: 2.4.22 # For Ruby 2.7 compatibility - name: Run tests - run: bundle exec rake + run: bundle exec rake test