File tree 4 files changed +23
-3
lines changed
4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Erstellt ein Build für das aktuelle Hostsystem
2
- go build -o bin /m.gowiese
2
+ go build -o build /m.gowiese
3
3
4
4
# Crossplatform Builds !
5
5
6
6
# Erstellt ein Build für Windows 64Bit
7
- # GOOS=windows GOOARCH=amd64 go build -o bin /m.gowiese.exe
7
+ # GOOS=windows GOOARCH=amd64 go build -o build /m.gowiese.exe
8
8
9
9
# Erstellt ein Web Assembly Build
10
- # GOOS=js GOARCH=wasm go build -o bin /m.gowiese.wasm
10
+ # GOOS=js GOARCH=wasm go build -o build /m.gowiese.wasm
Original file line number Diff line number Diff line change
1
+ // Package files contains examples for fileoperations
2
+ package files
Original file line number Diff line number Diff line change
1
+ analyze :
2
+ @go vet ./...
3
+ @go run honnef.co/go/tools/cmd/staticcheck@latest --checks=all ./...
4
+
5
+ build : analyze test
6
+ @mkdir -p ./build
7
+ @go build -o ./build/tictactoe
8
+
9
+ coverage : test
10
+ @mkdir -p ./coverage
11
+ @go test -coverprofile=./coverage/coverage.out ./...
12
+ @go tool cover -html=./coverage/coverage.out -o ./coverage/coverage.html
13
+ @open ./coverage/coverage.html
14
+
15
+ test : analyze
16
+ @go test -cover ./...
17
+
18
+ .PHONY : analyze build coverage test
You can’t perform that action at this time.
0 commit comments