From f289500937f5260ef79f3caac12ed16e4c532b23 Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Fri, 11 Oct 2024 23:45:19 +0200 Subject: [PATCH] GitHub Actions: Use RSpec command without manual requires Since aligning our RSpec setup to the recommended defaults, we don't need the manual require statements any longer. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fea23bf4..5407dd525 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: env: RAILS_ENV: test CC_TEST_REPORTER_ID: true - run: bundle exec rspec --color --format RSpec::Github::Formatter --format progress --require spec_helper --require rails_helper + run: bundle exec rspec --color --format RSpec::Github::Formatter --format progress - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4