From 868759262139f50ab5a4e2d3e7a9e6372ee6c202 Mon Sep 17 00:00:00 2001 From: Dpbm Date: Tue, 9 Jul 2024 14:25:41 -0300 Subject: [PATCH] fixed actions workflows (build) --- .github/workflows/cmake-build-test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cmake-build-test.yml b/.github/workflows/cmake-build-test.yml index dbae2f7..1086f60 100644 --- a/.github/workflows/cmake-build-test.yml +++ b/.github/workflows/cmake-build-test.yml @@ -12,6 +12,16 @@ jobs: - uses: actions/checkout@v3 - name: Prepare ubuntu + run: | + chmod +x ./dep-ubuntu.sh && ./dep-ubuntu.sh \ + git config --global user.name "" \ + git config --global user.email "" + + - uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Setup python run: python -m pip install -r requirements.txt - name: Run script to Build and Test