From 6a15cc404e9bfc12b4f7098acf917e23ec841e2b Mon Sep 17 00:00:00 2001 From: Katherine Eaton Date: Thu, 25 Jul 2024 17:03:18 -0600 Subject: [PATCH] ci: test include experiment --- .github/workflows/test.yaml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 89c9edc..47176f5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -22,22 +22,26 @@ jobs: strategy: fail-fast: false matrix: + os: [ubuntu-latest, windows-latest] + python-version: [3.7, 3.9] include: - # linux - os: ubuntu-latest arch: linux - python-version: ["3.7", "3.9"] - # windows - - os: windows-latest + - os: windows-altest arch: windows - python-version: ["3.7", "3.9"] - # macOS - - os: macos-latest - arch: macos - python-version: ["3.7", "3.9"] - # # docker - # - os: ubuntu-latest - # arch: docker + # include: + # # linux + # - os: ubuntu-latest + # arch: linux + # # windows + # - os: windows-latest + # arch: windows + # # macOS + # - os: macos-latest + # arch: macos + # # # docker + # # - os: ubuntu-latest + # # arch: docker runs-on: ${{ matrix.os }}