mirror of
https://github.com/rjNemo/underscore
synced 2026-06-10 04:26:47 +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
|
.DS_Store
|
||||||
.AppleDouble
|
/docs
|
||||||
.LSOverride
|
*.md
|
||||||
Icon
|
.git*
|
||||||
._*
|
.idea/
|
||||||
.DocumentRevisions-V100
|
.golangci.yml
|
||||||
.fseventsd
|
coverage.out
|
||||||
.Spotlight-V100
|
|
||||||
.TemporaryItems
|
|
||||||
.Trashes
|
|
||||||
.VolumeIcon.icns
|
|
||||||
.com.apple.timemachine.donotpresent
|
|
||||||
.AppleDB
|
|
||||||
.AppleDesktop
|
|
||||||
Network Trash Folder
|
|
||||||
Temporary Items
|
|
||||||
.apdisk
|
|
||||||
/docs
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
FROM golang:1.18beta1-alpine
|
FROM golang:1.18beta1-alpine
|
||||||
|
|
||||||
|
ENV CGO_ENABLED 0
|
||||||
|
RUN apk update --no-cache
|
||||||
|
|
||||||
WORKDIR /lib
|
WORKDIR /lib
|
||||||
|
|
||||||
COPY go.* ./
|
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:
|
build:
|
||||||
docker build . -t underscore:latest
|
docker build . -t underscore:latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue