diff --git a/.github/workflows/python-testing.yml b/.github/workflows/python-testing.yml index 0571a5f..b237da8 100644 --- a/.github/workflows/python-testing.yml +++ b/.github/workflows/python-testing.yml @@ -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 @@ -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