From 02871050a6f8d6ec282f73acb0d88354dcc3abd1 Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Mon, 17 Feb 2020 06:34:39 +0100 Subject: [PATCH] change step names --- .github/workflows/ruby.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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