[Quicky] Github Action: cache Ruby's gems
![[Quicky] Github Action: cache Ruby's gems](https://cdn.hashnode.com/res/hashnode/image/upload/v1706068331029/ba17c768-ab31-483b-8b3e-dcd5ad229327.png)
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
