Skip to content

Commit

Permalink
Added matrix 311 and 312 to action
Browse files Browse the repository at this point in the history
  • Loading branch information
howroyd committed Feb 13, 2024
1 parent e10dc73 commit 9cae54a
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/python-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@ permissions:
jobs:
linting:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.11
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
git submodule update --init --recursive
Expand All @@ -39,14 +43,18 @@ jobs:
pytest:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.11
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
git submodule update --init --recursive
Expand Down

0 comments on commit 9cae54a

Please sign in to comment.