Skip to content
Open

Hte #121

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
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
}
}
1 change: 1 addition & 0 deletions .github/workflows/echo-contrib.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

name: Run Tests

on:
Expand Down
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "go",
"label": "go: build package",
"command": "build",
"args": [
"${fileDirname}"
],
"problemMatcher": [
"$go"
],
"group": "build",
"detail": "cd /workspaces/echo-contrib; go build ${fileDirname}"
}
]
}