From 13dbb86d3808e649e83ae64c16e4001dc6de6a24 Mon Sep 17 00:00:00 2001 From: csxkdv Date: Tue, 6 Jan 2026 17:37:33 -0300 Subject: [PATCH] Updated workflow: Install ruby first -> Install dependencies -> Run main file --- .gitea/workflows/compile.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml index 97f3141..c3da2ce 100644 --- a/.gitea/workflows/compile.yml +++ b/.gitea/workflows/compile.yml @@ -9,7 +9,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Compile software + - name: Install Ruby + run: apt-get install -y ruby-full + + - name: Install dependencies run: bundle install - name: Execute program