From 5dd95c9959a5c7bb05eb98465d209b776e2ed301 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Fri, 12 Jul 2024 15:10:10 -0700 Subject: [PATCH] static --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index babdffdf..876a17e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,10 +37,10 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v3 - - name: Installing build dependencies - run: ./install_dependencies.sh - - name: Installing msgq - run: pip3 install --break-system-packages .[dev] + - name: Building msgq + run: | + scripts/install_dependencies.sh + pip3 install --break-system-packages .[dev] - name: Static analysis # TODO: a package pre-commit installs has a warning, remove the unset once that's fixed run: unset PYTHONWARNINGS && pre-commit run --all