this'll fix her
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Elizabeth Hunt 2024-10-14 19:36:32 -07:00
parent 84eb502bcd
commit f8df9b1b87
Signed by untrusted user who does not match committer: simponic
GPG Key ID: 2909B9A7FF6213EE
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ steps:
- name: run tests
image: golang
commands:
- go build
- go build -i
- go test -p 1 -v ./...
trigger:
@ -23,7 +23,7 @@ steps:
- name: run tests
image: golang
commands:
- go build
- go build -i
- go test -p 1 -v ./...
- name: docker
image: plugins/docker

View File

@ -7,7 +7,7 @@ RUN go mod download
COPY . .
RUN go build -o /app/hatecomputers
RUN go build -i -o /app/hatecomputers
EXPOSE 8080