From f5ac9c08c868a1baaa8ed5603e087813cbf0548c Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Mon, 5 Oct 2020 10:50:52 +0200 Subject: [PATCH] remove caching in ci --- .github/workflows/main.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ec65f282..d938ce03 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,15 +11,7 @@ jobs: runs-on: [macos-latest] steps: - uses: actions/checkout@v1 - - name: Cache RubyGems - uses: actions/cache@v1 - id: rubygem-cache - with: - path: vendor/bundle - key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }} - restore-keys: ${{ runner.os }}-gem- - name: Install RubyGems - if: steps.rubygem-cache.outputs.cache-hit != 'true' run: | cd example/ios bundle install