From a64ba9078a1cceb66872e5b8e3689b0cdb82077b Mon Sep 17 00:00:00 2001 From: Malthe Borch Date: Thu, 18 Apr 2024 22:53:24 +0200 Subject: [PATCH] Fix OS runner config --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 780074f..787fa4d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,8 @@ jobs: fail-fast: false matrix: os: - - ["ubuntu-latest", "windows-latest"] + - "ubuntu-latest" + - "windows-latest" config: # [Python version, tox env] - ["3.9", "lint"] @@ -44,7 +45,7 @@ jobs: - ["3.12", "mypy"] - ["3.11", "z3c.macro"] - ["3.11", "z3c.pt"] - runs-on: ${{ matrix.os[1] }} + runs-on: ${{ matrix.os }} if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name name: ${{ matrix.config[1] }} steps: