Update testing and README #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MATLAB Build | |
# Controls when the action will run. | |
on: | |
push: | |
branches: [ release ] | |
pull_request: | |
branches: [ release ] | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
MATLABVersion: [R2021a,R2021b,R2022a,R2022b,R2023a,R2023b] | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
# Sets up MATLAB on the GitHub Actions runner | |
- name: Setup MATLAB | |
uses: matlab-actions/setup-matlab@v1 | |
with: | |
release: ${{ matrix.MATLABVersion }} | |
# Run SmokeTests | |
- name: Run SmokeTests | |
uses: matlab-actions/run-command@v1 | |
with: | |
command: openProject(pwd); results = runtests(fullfile("SoftwareTests","SmokeTests.m")); assertSuccess(results); | |
# Run FunctionTests | |
- name: Run FunctionTests | |
uses: matlab-actions/run-command@v1 | |
with: | |
command: openProject(pwd); results = runtests(fullfile("SoftwareTests","FunctionTests.m")); assertSuccess(results); | |
# Upload the test results as artifact | |
- name: Upload TestResults | |
uses: actions/[email protected] | |
with: | |
name: TestResults | |
path: ./SoftwareTests/TestResults_${{ matrix.MATLABVersion }}.txt | |
# Download the test results from artifact | |
- name: Download TestResults | |
uses: actions/[email protected] | |
with: | |
name: TestResults | |
path: ./SoftwareTests/ | |
# Create the test results badge | |
- name: Run CreateBadge | |
uses: matlab-actions/run-command@v1 | |
with: | |
command: openProject(pwd); results = runtests(fullfile("SoftwareTests","CreateBadge.m")); | |
# Commit the JSON for the MATLAB releases badge | |
- name: Commit changed files | |
continue-on-error: true | |
run: | | |
git config user.name "${{ github.workflow }} by ${{ github.actor }}" | |
git config user.email "<>" | |
git pull | |
git add | |
git commit Images/TestedWith.json -m "Update CI badges ${{ github.ref_name }}" | |
git push |