From 3f560f282335b7b4e20c18cc698587deaf193790 Mon Sep 17 00:00:00 2001 From: Luis Caparroz Date: Wed, 5 Mar 2025 14:56:12 +0100 Subject: [PATCH] ci: Add ruby-devel installation to Rubocop job Add a step on the GitHub Actions job "Rubocop" to install the package 'ruby-devel', which provide Ruby's headers, required by the 'racc' (installed with 'bundle install'). --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f428cd4..796814f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,9 @@ jobs: - name: Git Checkout uses: actions/checkout@v2 + - name: Install ruby-devel package + run: zypper --non-interactive install ruby-devel + - name: Install project dependencies run: bundle install