From 75bb8aaafe63891dcdd8cadfd41154763b84e8e0 Mon Sep 17 00:00:00 2001 From: Keith Manville Date: Tue, 1 Aug 2023 20:15:10 +0000 Subject: [PATCH] change runner image to `windows-2022` in an attempt to reproduce the issue --- .github/workflows/tox-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox-tests.yml b/.github/workflows/tox-tests.yml index 0e652942b..de2f47f83 100644 --- a/.github/workflows/tox-tests.yml +++ b/.github/workflows/tox-tests.yml @@ -25,7 +25,7 @@ on: jobs: linting-and-style-checks: - runs-on: ubuntu-20.04 + runs-on: windows-2022 strategy: matrix: python-version: ["3.9"] @@ -68,7 +68,7 @@ jobs: run: python3 -m tox run -e ${{ matrix.tox-testenv }} unit-tests: - runs-on: ubuntu-20.04 + runs-on: windows-2022 strategy: matrix: python-version: ["3.9", "3.10"]