From 3a36eb33782350f7661109f151f4aa243a13b391 Mon Sep 17 00:00:00 2001 From: Ryan W Date: Wed, 28 Dec 2022 09:37:09 -0800 Subject: [PATCH] bundle install --- .github/workflows/ruby.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 8912ed2..f4f88c7 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -20,6 +20,8 @@ jobs: uses: ruby/setup-ruby@v1 with: bundler-cache: false + - name: bundle + run: bundle install - name: Run linters run: bundle exec rubocop --parallel - name: Ruby security checks @@ -56,11 +58,11 @@ jobs: uses: ruby/setup-ruby@v1 with: bundler-cache: false - + - name: bundle + run: bundle install - name: Create database run: | bundle exec rails db:create bundle exec rails db:schema:load - - name: Run tests run: bundle exec rake