From 4112cbc80f8f552c90ff7fe31f1ad5d406ce946b Mon Sep 17 00:00:00 2001 From: Alessandro Rodi Date: Thu, 23 May 2024 16:41:29 +0200 Subject: [PATCH] Use rspec instead of rake --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 596db697..49687f7a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,10 +81,10 @@ jobs: bundler-cache: true - name: Run tests on sqlite - run: DB=sqlite bundle exec rake + run: DB=sqlite bundle exec rspec - name: Run tests on postgres - run: DB=postgres bundle exec rake + run: DB=postgres bundle exec rspec lint: name: Lint