mirror of
https://github.com/rjNemo/underscore
synced 2026-06-06 02:26:42 +00:00
parent
482e553263
commit
bbb199ce62
3 changed files with 10 additions and 48 deletions
|
|
@ -1,48 +1,7 @@
|
|||
*~
|
||||
.fuse_hidden*
|
||||
.directory
|
||||
.Trash-*
|
||||
.nfs*
|
||||
/public/
|
||||
/resources/_gen/
|
||||
hugo.exe
|
||||
hugo.darwin
|
||||
hugo.linux
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
*.test
|
||||
*.out
|
||||
Thumbs.db
|
||||
Thumbs.db:encryptable
|
||||
ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
*.stackdump
|
||||
[Dd]esktop.ini
|
||||
$RECYCLE.BIN/
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
*.lnk
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
Icon
|
||||
._*
|
||||
.DocumentRevisions-V100
|
||||
.fseventsd
|
||||
.Spotlight-V100
|
||||
.TemporaryItems
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
||||
.com.apple.timemachine.donotpresent
|
||||
.AppleDB
|
||||
.AppleDesktop
|
||||
Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
/docs
|
||||
/docs
|
||||
*.md
|
||||
.git*
|
||||
.idea/
|
||||
.golangci.yml
|
||||
coverage.out
|
||||
|
|
@ -1,5 +1,8 @@
|
|||
FROM golang:1.18beta1-alpine
|
||||
|
||||
ENV CGO_ENABLED 0
|
||||
RUN apk update --no-cache
|
||||
|
||||
WORKDIR /lib
|
||||
|
||||
COPY go.* ./
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -1,4 +1,4 @@
|
|||
TEST = "CGO_ENABLED=0 go test ./... -coverpkg=./... -coverprofile coverage.txt -covermode=atomic; go tool cover -func coverage.txt"
|
||||
TEST = "go test ./... -coverpkg=./... -coverprofile coverage.out -covermode=atomic; go tool cover -func coverage.out; rm coverage.out"
|
||||
|
||||
build:
|
||||
docker build . -t underscore:latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue