We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e634a8 commit b5f256dCopy full SHA for b5f256d
.github/workflows/devcontainer.yaml
@@ -15,7 +15,5 @@ jobs:
15
- name: Build dev container
16
uses: devcontainers/[email protected]
17
with:
18
- runCmd: |
19
- go version
20
- go build ./...
21
-
+ push: never
+ runCmd: make build
Makefile
@@ -6,6 +6,10 @@ ide:
6
@echo "Opening IDE..."
7
devcontainer open
8
9
+build:
10
+ @echo "Building project..."
11
+ go build .
12
+
13
run:
14
@echo "Running server..."
- go run main.go
+ go run .
0 commit comments