Housekeeping

Move docs and commands out into their own files
This commit is contained in:
Marc Di Luzio 2020-05-29 18:27:03 +01:00
parent b04eb8a04a
commit 73a1e1fd21
5 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ jobs:
fi
- name: Build
run: go build -v .
run: go build -v ./...
- name: Test
run: go test -v .
run: go test -v ./...

View file

@ -5,6 +5,6 @@ WORKDIR /app
COPY . .
RUN go mod download
RUN go build -o rove .
RUN go build -o rove ./...
CMD "./rove"