Setting up matrix for Python version testing

This commit is contained in:
Pieter Belmans
2023-11-20 13:46:49 +01:00
parent 6bf61dbf35
commit 7a18fefb25

View File

@@ -5,12 +5,16 @@ on:
jobs: jobs:
plastex: plastex:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps: steps:
# for now, because callable has changed # for now, because callable has changed
- name: Use older Python version - name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: "3.9" python-version: ${{ matrix.python-version }}
- name: Install TeXLive - name: Install TeXLive
uses: teatimeguest/setup-texlive-action@v2 uses: teatimeguest/setup-texlive-action@v2
with: with: