Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/bat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,14 @@ jobs:
[~, f] = fileparts(pwd);
assert(strcmp(f, 'subdir'));
startup-options: -sd subdir
- name: Run command to run tests
uses: ./
with:
command: runtests("sample/TheTruth.m");
- name: Run command to run tests (sanity check for test summary)
uses: ./
with:
command: runtests("sample/TheTruth.m"); runtests("sample/TheTruth.m"); runtests("sample/TheTruth.m");
- name: Create buildfile.m in project root for build and test summary
shell: bash
run: |
Expand Down
5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ inputs:
Startup options for MATLAB
required: false
default: ""
generate-summary:
description: >-
Option to generate a summary for the GitHub job summary
required: false
default: true
runs:
using: node24
main: dist/index.js
Loading
Loading