remove caching in ci

This commit is contained in:
Salvatore Giordano
2020-10-05 10:50:52 +02:00
parent 75ff451429
commit f5ac9c08c8
-8
View File
@@ -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