From 2922d31b2c33e198093b1b3bd2f465cc6d3c5d7c Mon Sep 17 00:00:00 2001 From: konstin Date: Mon, 13 Nov 2023 17:02:34 +0100 Subject: [PATCH] Try fixing CI python version --- .github/workflows/ci.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bfc03a2be0b8..43e2f80050db 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -48,14 +48,13 @@ jobs: name: "cargo test | ${{ matrix.os }}" steps: - uses: actions/checkout@v4 - # TODO(konstin): Mock the venv in the installer test so we don't need this anymore - - uses: actions/setup-python@v4 - with: - python-version: '3.8' + # TODO(konstin): Mock the venv in the installer test so we don't need 3.8 anymore - name: "Install Python" uses: actions/setup-python@v4 with: - python-version: ${{ env.PYTHON_VERSION }} + python-version: | + 3.8 + ${{ env.PYTHON_VERSION }} - name: "Install Rust toolchain" run: rustup show - name: "Install cargo insta"