From 79b3a094e3a99f0e1161953f85b0e9667a46777b Mon Sep 17 00:00:00 2001 From: Richard Hallett Date: Thu, 6 Jan 2022 10:20:20 +0100 Subject: [PATCH] Try removing gem cache --- .github/workflows/stage.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index 8aff6cf..2fe74d1 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -26,19 +26,19 @@ jobs: uses: actions/setup-ruby@v1 with: ruby-version: '2.6.x' - - uses: actions/cache@v2 - with: - path: vendor/bundle - key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} - restore-keys: | - ${{ runner.os }}-gems- + # - uses: actions/cache@v2 + # with: + # path: vendor/bundle + # key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} + # restore-keys: | + # ${{ runner.os }}-gems- - name: Install env: MYSQL_PORT: ${{ job.services.mysql.ports[3306] }} run: | cp .env.build .env gem install bundler - bundle config path vendor/bundle + # bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Lint and Test env: