Skip to content

Commit c88860b

Browse files
Merge pull request #140 from GuentherJulian/feature/vscodeCobiGenJava
vscode runner and cobigenJava command
2 parents 0f95870 + 68d5f4c commit c88860b

File tree

16 files changed

+2481
-81
lines changed

16 files changed

+2481
-81
lines changed

.github/workflows/linuxMain.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ jobs:
2323
run: bash checkout.sh
2424

2525
- name: run buildRun.sh
26-
run: sh buildRun.sh
26+
uses: GabrielBB/[email protected]
27+
with:
28+
run: sh buildRun.sh

engine/runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export abstract class Runner {
104104
if(deleteFolerIfExist) {
105105
rimraf.sync(path);
106106
fs.mkdirSync(path, { recursive: true });
107-
} else return
107+
} else return path;
108108
}
109109
fs.mkdirSync(path, { recursive: true });
110110
return path;
File renamed without changes.

environments/test_vscode.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"failOnIncomplete": true,
3+
"runners": [
4+
"vscode",
5+
"console"
6+
]
7+
}

0 commit comments

Comments
 (0)