Add in the Python and OS matrix
authorDaniel Feldroy <pydanny@users.noreply.github.com>
Mon, 21 Sep 2020 17:23:00 +0000 (10:23 -0700)
committerGitHub <noreply@github.com>
Mon, 21 Sep 2020 17:23:00 +0000 (10:23 -0700)
.github/workflows/python-package.yml

index 5f9c4c1aac2a16e6b02373622d3c3f6e38da3fb1..4d42aaec58cd52bcc6e7730f30e1d0c9ca3502a8 100644 (file)
@@ -6,15 +6,19 @@ name: Python package
 on:
   push:
     branches: [ master ]
+    paths-ignore:
+      - '**.md'    
   pull_request:
     branches: [ master ]
+    paths-ignore:
+      - '**.md'    
 
 jobs:
-  build:
-
-    runs-on: ubuntu-latest
+  run:
+    runs-on: ${{ matrix.operating-system }}
     strategy:
       matrix:
+        operating-system: [ubuntu-latest, windows-latest]
         python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
 
     steps: