From 10095927ba376f393341e543422bdd5526e3a4d3 Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Fri, 7 Feb 2025 10:10:08 -0600 Subject: [PATCH] Don't run the setup script in CI it's meant to start the development experience, and it's not needed for tests --- .github/workflows/ruby.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 5d0132218..c536a6351 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -31,6 +31,8 @@ jobs: BUNDLE_GEMS__CONTRIBSYS__COM: ${{ secrets.BUNDLE_GEMS__CONTRIBSYS__COM }} run: bundle config --local gems.contribsys.com ${BUNDLE_GEMS__CONTRIBSYS__COM} - name: Install dependencies - run: bin/setup && bin/rails db:test:prepare + run: bundle install + - name: Setup db + run: bin/rails db:test:prepare - name: Run tests run: bundle exec rake