From fc6b7ef38ccaf7d37dbfdd621bd95aac82682f4b Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 22 Mar 2026 08:45:53 +0100 Subject: [PATCH] workflow: fix The `python-version` input is not set. The version of Python currently in `PATH` will be used. --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39b61cf8..c1ab0932 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,6 +49,8 @@ jobs: apt-get install -y git - uses: actions/checkout@v5 - uses: actions/setup-python@v6 + with: + python-version: ${{ matrix.python-version }} - name: Install Python dependencies run: | apt-get install -y tox rust-all cargo