Added "gem install bundler" because it does not come with Ruby by default
Some checks failed
Compile / Compile (push) Failing after 19s

This commit is contained in:
2026-01-06 17:41:49 -03:00
parent 28529158e5
commit 4c06e3fbbd

View File

@@ -9,10 +9,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Ruby
- name: Install Ruby and Bundler
run: |
apt-get update
apt-get install -y ruby-full
gem install bundler
- name: Install dependencies
run: bundle install