diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 1ad2a332..d3ae6f62 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -19,7 +19,7 @@ jobs: with: ruby-version: ${{ matrix.ruby }} - - name: Cache gems + - name: Restore GEM cache uses: actions/cache@v1 with: path: vendor/bundle @@ -27,14 +27,14 @@ jobs: restore-keys: | ${{ runner.os }}-${{ matrix.ruby }}-gem- - - name: Build and test + - name: Install GEMs run: | gem install bundler bundle config force_ruby_platform true bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - - name: test + - name: rspec run: | bundle exec rspec