Skip to content

Commit 0c02d1e

Browse files
committed
check workspace
1 parent 824d0ea commit 0c02d1e

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/bat.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ jobs:
2727
uses: ./
2828

2929
- run: |
30+
pwd
3031
ls
32+
cd src
33+
ls
34+
cd resources
3135
3236
# - name: Run MATLAB Tests
3337
# uses: ./

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ async function run() {
3333
// const command = scriptgen.generateCommand(options);
3434
const pluginsPath = path.join(__dirname, "src/resources").replace("'","''");
3535
const command = "addpath('"+ pluginsPath +"');" + "import matlab.unittest.TestRunner; addpath(genpath('code')); suite = testsuite(pwd, 'IncludeSubfolders', true); runner = TestRunner.withDefaultPlugins(); results = runner.run(suite); display(results); assertSuccess(results);";
36+
core.summary.addRaw(command, true);
3637
const startupOptions = core.getInput("startup-options").split(" ");
3738

3839
const helperScript = await core.group("Generate script", async () => {

0 commit comments

Comments
 (0)