Skip to content

Commit

Permalink
CI: Test Python LTS and Python latest on Windows too
Browse files Browse the repository at this point in the history
  • Loading branch information
obilodeau committed Jun 27, 2023
1 parent 5c9634e commit 58cc722
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,17 @@ jobs:

install-and-test-windows:
runs-on: windows-latest
strategy:
matrix:
# Lets try to keep testing an LTS python and latest python
python-version: ['3.7', '3.11']

name: Install and test on Windows with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
python-version: ${{ matrix.python-version }}
architecture: 'x64'

- name: Python version
Expand Down

0 comments on commit 58cc722

Please sign in to comment.