From fa83830632b25cc9a55fa01eee27a473f7831d6a Mon Sep 17 00:00:00 2001 From: dmshvetsov Date: Fri, 8 Sep 2023 17:23:40 +0200 Subject: [PATCH] add test task for vscode --- .vscode/tasks.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..3dafe5a --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,12 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "test", + "type": "shell", + "command": "make test" + } + ] +} \ No newline at end of file