Merge pull request #776 from oddstr13/pr-test-windows-1

Add windows to the test matrix
This commit is contained in:
Odd Stråbø 2023-09-22 05:19:44 +02:00 committed by GitHub
commit 5f8865de49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -13,11 +13,15 @@ env:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
py_version: ['2.7', '3.9', '3.11']
os: [ubuntu-latest, windows-latest]
exclude:
- os: windows-latest
py_version: '2.7'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3