From 923cead06c4c8dcfb036496916679f2c6b8da404 Mon Sep 17 00:00:00 2001 From: Ira Horecka Date: Tue, 23 Jan 2024 12:55:22 -0500 Subject: [PATCH] update ci.yaml --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7502b26..192d371 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,10 +3,11 @@ name: continuous-integration on: [push] jobs: - build: - runs-on: ubuntu-latest + test: + runs-on: $${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, windows-latest, macos-latest] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2