[Quicky] Github Action: cache Ruby's gems
![[Quicky] Github Action: cache Ruby's gems](/_next/image?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1706068331029%2Fba17c768-ab31-483b-8b3e-dcd5ad229327.png&w=3840&q=75)
10+ years most with Ruby on Rails and JavaScript frontend and some Go. My first language is C for 3 years in university.
You just need bundler-cache: true
# .github/workflows/my_very_special_job.yml
jobs:
my_very_special_job:
steps:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true ###### That's the line
