Skip to content

Commit 500bc1a

Browse files
committed
Neue Notizen...
1 parent 2fd24fb commit 500bc1a

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Erstellt ein Build für das aktuelle Hostsystem
2-
go build -o bin/m.gowiese
2+
go build -o build/m.gowiese
33

44
# Crossplatform Builds !
55

66
# 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
88

99
# 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

build/m.gowiese

1.94 MB
Binary file not shown.

files/documentation.go

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Package files contains examples for fileoperations
2+
package files

makefile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

0 commit comments

Comments
 (0)