Commit 312e808 committed Feb 19, 2025 · 3 / 3 · Verified
0 parents commit 312e808 Copy full SHA for 312e808
File tree 8 files changed +82
-0
lines changed
8 files changed +82
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : gomod
4
+ directory : /
5
+ schedule :
6
+ interval : daily
7
+ - package-ecosystem : github-actions
8
+ directory : /
9
+ schedule :
10
+ interval : daily
Original file line number Diff line number Diff line change
1
+ name : Build
2
+ on :
3
+ push :
4
+ branches :
5
+ - main
6
+ pull_request :
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-go@v5
13
+ with :
14
+ go-version : " stable"
15
+ - run : make build
Original file line number Diff line number Diff line change
1
+ name : Test
2
+ on :
3
+ push :
4
+ branches :
5
+ - main
6
+ pull_request :
7
+ jobs :
8
+ test :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-go@v5
13
+ with :
14
+ go-version : " stable"
15
+ - run : go test -cover ./...
Original file line number Diff line number Diff line change
1
+ # If you prefer the allow list template instead of the deny list, see community template:
2
+ # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3
+ #
4
+ # Binaries for programs and plugins
5
+ * .exe
6
+ * .exe~
7
+ * .dll
8
+ * .so
9
+ * .dylib
10
+ servmon-bin
11
+
12
+ # Test binary, built with `go test -c`
13
+ * .test
14
+
15
+ # Output of the go coverage tool, specifically when used with LiteIDE
16
+ * .out
17
+
18
+ # Dependency directories (remove the comment below to include it)
19
+ # vendor/
20
+
21
+ # Go workspace file
22
+ go.work
23
+ go.work.sum
24
+
25
+ # env file
26
+ .env
27
+ .servmon.yaml
Original file line number Diff line number Diff line change
1
+ # !/usr/bin/make -f
2
+
3
+ PWD =$(shell pwd)
4
+
5
+ build :
6
+ go build ./cmd/nova
7
+
8
+ install :
9
+ go install ./cmd/nova
Original file line number Diff line number Diff line change
1
+ package main
2
+
3
+ func main () {}
Original file line number Diff line number Diff line change
1
+ module github.com/01builders/nova
2
+
3
+ go 1.24.0
You can’t perform that action at this time.
0 commit comments