From cbe113f717c6b548dec28d353cd39d8e001e1c44 Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Mon, 8 Apr 2024 09:41:14 +0100 Subject: [PATCH] was missing a syphar removal :/ --- .github/actions/run-backend-tests/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/run-backend-tests/action.yml b/.github/actions/run-backend-tests/action.yml index a9ce6d8fe922b..2c50c7becfe8a 100644 --- a/.github/actions/run-backend-tests/action.yml +++ b/.github/actions/run-backend-tests/action.yml @@ -52,7 +52,9 @@ runs: token: ${{ inputs.token }} # uv is a fast pip alternative: https://github.com/astral-sh/uv/ - - run: pip install uv + - name: Install uv + shell: bash + run: pip install uv - name: Determine if hogql-parser has changed compared to master shell: bash