Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unneeded action steps #2734

Merged
merged 3 commits into from
Jan 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove unneeded action steps
The bundler-cache option for setting up ruby does the job of running bundle install and caching gems
  • Loading branch information
kenyonj authored Jan 27, 2022
commit ddb975a0124a5da2d2e2776f1fb1432d6abd7d53
11 changes: 3 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,13 @@ jobs:
uses: actions/checkout@v2.4.0

- name: Set up Ruby
uses: actions/setup-ruby@v1.1.3
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Set up Node
uses: actions/setup-node@v2.5.1

- name: Restore bundler cache
uses: actions/cache@v2.1.7
with:
path: vendor/gems
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: ${{ runner.os }}-gems-

- name: Bootstrap
run: script/bootstrap

Expand Down