From 5c6f1a4169146d6b05213a38fdbf5382cf08dbf2 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Fri, 19 Dec 2025 11:48:37 +0100 Subject: [PATCH] add install cmake to workflow --- .gitea/workflows/unit_tests.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/unit_tests.yaml b/.gitea/workflows/unit_tests.yaml index 53ab0a0..63c8f8e 100644 --- a/.gitea/workflows/unit_tests.yaml +++ b/.gitea/workflows/unit_tests.yaml @@ -16,10 +16,10 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - # - name: Install Dependencies - # run: | - # apt-get update - # apt-get install -y cmake git unzip # Install required packages + - name: Install Dependencies + run: | + apt-get update + apt-get install -y cmake # Install required packages - name: Build the Project run: |