Skip to content

Commit

Permalink
Updated yml for CI testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
callieEDU committed Sep 25, 2024
1 parent fec2515 commit c041aed
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;

Expand Down

0 comments on commit c041aed

Please sign in to comment.