]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
test 3.10 and windows too
authorBob Halley <halley@dnspython.org>
Tue, 7 Dec 2021 13:33:11 +0000 (05:33 -0800)
committerBob Halley <halley@dnspython.org>
Tue, 7 Dec 2021 13:33:11 +0000 (05:33 -0800)
.github/workflows/python-package.yml

index ea27d868977abf7c345e79d269b61cfb6f207e9b..6fd45cd8b7acf08c204d6eda3cc8b79d2e9f2001 100644 (file)
@@ -12,11 +12,16 @@ on:
 jobs:
   build:
 
-    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
-        python-version: [3.7, 3.8, 3.9]
+        os: [ubuntu-latest, windows-latest]
+        python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
+        exclude:
+          - os: windows-latest
+            python-version: 3.7
+          - os: windows-latest
+            python-version: 3.6
 
     steps:
     - uses: actions/checkout@v2