From 36595e1de5bf7b70c483afcd98e8d4594c8bf440 Mon Sep 17 00:00:00 2001 From: alexj0se Date: Mon, 18 Nov 2024 17:07:01 -0500 Subject: [PATCH] Add workflow for 24b --- .../workflows/{qualify_24a.yml => qualify_24b.yml} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{qualify_24a.yml => qualify_24b.yml} (76%) diff --git a/.github/workflows/qualify_24a.yml b/.github/workflows/qualify_24b.yml similarity index 76% rename from .github/workflows/qualify_24a.yml rename to .github/workflows/qualify_24b.yml index 1f4d2f1..5210ca6 100644 --- a/.github/workflows/qualify_24a.yml +++ b/.github/workflows/qualify_24b.yml @@ -1,15 +1,15 @@ -# Run tInstall on Ubuntu against python versions 3.11, 3.10 and 3.9 +# Run tInstall on Ubuntu against python versions 3.12, 3.11, 3.10 and 3.9 -name: Test R2024a +name: Test R2024b on: push: branches: - - R2024a + - R2024b pull_request: branches: - - R2024a + - R2024b # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -21,7 +21,7 @@ jobs: test-python-engine: strategy: matrix: - python: ["3.11", "3.10", "3.9"] + python: ["3.12", "3.11", "3.10", "3.9"] runs-on: ubuntu-latest @@ -34,7 +34,7 @@ jobs: - name: Set up MATLAB uses: matlab-actions/setup-matlab@v2 with: - release: R2024a + release: R2024b - uses: actions/checkout@v3