Skip to content

Commit

Permalink
Improve main job.
Browse files Browse the repository at this point in the history
Run tests also on R2024b.
  • Loading branch information
pablorcum committed Sep 29, 2024
1 parent de6a49d commit 793e8ea
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
tasks: check

- name: Upload SARIF file
if: success() || failure()
uses: github/codeql-action/upload-sarif@v3
with:
# Path to SARIF file relative to the root of the repository
Expand All @@ -57,7 +58,7 @@ jobs:
strategy:
fail-fast: false # Run with every MATLAB version independently
matrix:
matlabVer: [R2024a] # List of MATLAB releases to test
matlabVer: [R2024a, R2024b] # List of MATLAB releases to test
runs-on: matlab

# Steps represent a sequence of tasks that will be executed as part of the job
Expand Down Expand Up @@ -99,7 +100,7 @@ jobs:
tasks: test

- name: Upload Test Results
if: always()
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: Test Results (MATLAB ${{ matrix.matlabVer }})
Expand All @@ -120,7 +121,7 @@ jobs:
checks: write
# only needed unless run with comment_mode: off
pull-requests: write
if: always()
if: success() || failure()
steps:
- name: Download Test Results
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 793e8ea

Please sign in to comment.