Add windows to the test matrix

This commit is contained in:
Odd Stråbø 2023-09-22 03:10:13 +00:00
parent 18b785c68b
commit b147b98199
1 changed files with 5 additions and 1 deletions

View File

@ -13,11 +13,15 @@ env:
jobs: jobs:
test: test:
runs-on: ubuntu-latest
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
py_version: ['2.7', '3.9', '3.11'] 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: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3