From 7a18fefb25d50920ae30ed71ebb9ee6de0d09016 Mon Sep 17 00:00:00 2001 From: Pieter Belmans Date: Mon, 20 Nov 2023 13:46:49 +0100 Subject: [PATCH] Setting up matrix for Python version testing --- .github/workflows/example.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 1ded207..b4a4a7e 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -5,12 +5,16 @@ on: jobs: plastex: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + steps: # for now, because callable has changed - - name: Use older Python version + - name: Setup Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: - python-version: "3.9" + python-version: ${{ matrix.python-version }} - name: Install TeXLive uses: teatimeguest/setup-texlive-action@v2 with: