From 9d22ffab173ecbe4a4bf461524758ec21447f47a Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Sun, 27 Oct 2024 19:40:35 +0000 Subject: [PATCH] Fix steps in Sona workflow --- .github/workflows/sonar.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 1bcbb6016..c8d11f788 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -30,12 +30,14 @@ jobs: - name: Install wxPython run: pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04/wxPython-4.2.1-cp310-cp310-linux_x86_64.whl - name: Install RIDE dependencies - run: git submodule update --init --recursive + run: | + git submodule update --init --recursive pip install -r requirements-dev.txt - name: Run Xvfb run: Xvfb :1 -noreset & - name: Test Install RIDE - run: git submodule update --init --recursive + run: | + git submodule update --init --recursive pip install . - name: Run RIDE unit-tests run: |