Skip to content

Commit

Permalink
chore: Update CI workflow to use bundler cache and bundle exec rake f…
Browse files Browse the repository at this point in the history
…or running tests
  • Loading branch information
hahwul committed Jun 28, 2024
1 parent d651ef4 commit cfe6f45
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ permissions:

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -23,6 +22,8 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Ensure Bundler is not in frozen mode
run: bundle config set --local frozen false
- name: Run tests
run: bundle exec rake

0 comments on commit cfe6f45

Please sign in to comment.