From: Bob Halley Date: Tue, 7 Dec 2021 13:33:11 +0000 (-0800) Subject: test 3.10 and windows too X-Git-Tag: v2.2.0rc1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b22a07d2d17e30e4707c96eca5661d678ad137f1;p=thirdparty%2Fdnspython.git test 3.10 and windows too --- diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index ea27d868..6fd45cd8 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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