Housekeeping
Move docs and commands out into their own files
This commit is contained in:
parent
b04eb8a04a
commit
73a1e1fd21
5 changed files with 3 additions and 3 deletions
4
.github/workflows/go.yml
vendored
4
.github/workflows/go.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -v .
|
run: go build -v ./...
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -v .
|
run: go test -v ./...
|
||||||
|
|
|
@ -5,6 +5,6 @@ WORKDIR /app
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN go mod download
|
RUN go mod download
|
||||||
|
|
||||||
RUN go build -o rove .
|
RUN go build -o rove ./...
|
||||||
|
|
||||||
CMD "./rove"
|
CMD "./rove"
|
||||||
|
|
Loading…
Add table
Reference in a new issue