From c041aeddcb2eead475bf260f933a55a8e599e1f8 Mon Sep 17 00:00:00 2001 From: callie Date: Wed, 25 Sep 2024 18:32:41 -0500 Subject: [PATCH] Updated yml for CI testing. --- .github/workflows/ci.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79c09f2..521f304 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: # Upload the test results as artifact - name: Upload TestResults - uses: actions/upload-artifact@v3.1.3 + uses: actions/upload-artifact@v4 with: name: TestResults path: ./SoftwareTests/TestResults_${{ matrix.MATLABVersion }}.txt @@ -58,22 +58,23 @@ jobs: # Checks-out your repository - uses: actions/checkout@v3 - # Sets up R2024a + # Sets up R2024b - name: Setup MATLAB uses: matlab-actions/setup-matlab@v2 with: - release: R2024a + release: R2024b # Download the test results from artifact - - name: Download TestResults + - name: Download All TestResults uses: actions/download-artifact@v4 with: - name: TestResults - path: ./SoftwareTests/ + path: SoftwareTests + pattern: TestResults_* + merge-multiple: true # Create the test results badge - name: Run CreateBadge - uses: matlab-actions/run-command@v2 + uses: matlab-actions/run-command@v1 with: command: openProject(pwd); CreateBadge;