From fc73cd9dc2fc30a1fd461d0f05af9f9679e042c8 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Fri, 22 Apr 2022 19:40:07 -0700 Subject: [PATCH] Add Windows to CI (#114) * Add Windows to CI * Update main.yml --- .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 7599e893..f5b1bab3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,11 +4,12 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, windows-latest] python-version: [ '3.7', '3.8', '3.9', '3.10' ] - name: Python ${{ matrix.python-version }} sample + name: Python ${{ matrix.os }} ${{ matrix.python-version }} sample steps: - uses: actions/checkout@v2 with: