clean_builds (#14)

Co-authored-by: Ruidy <rnemausat@newstore.com>
This commit is contained in:
Ruidy 2022-03-18 13:16:38 -04:00 committed by GitHub
parent 482e553263
commit bbb199ce62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 48 deletions

View file

@ -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

View file

@ -1,5 +1,8 @@
FROM golang:1.18beta1-alpine
ENV CGO_ENABLED 0
RUN apk update --no-cache
WORKDIR /lib
COPY go.* ./

View file

@ -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