From a900b4ff643157b4bf5d5af24cae382d80084662 Mon Sep 17 00:00:00 2001 From: Ruidy Date: Wed, 5 Jan 2022 12:26:40 -0400 Subject: [PATCH] chore: change workdir --- .github/workflows/unit-test.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index b3c12da..c13b665 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -28,6 +28,6 @@ jobs: uses: codecov/codecov-action@v2.1.0 with: token: 7106da3d-7479-471f-ae37-e3680b62063d - file: ./coverage.txt + file: ./lib/coverage.txt flags: unittests name: codecov-umbrella \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 5b70470..95a8911 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.18beta1-bullseye -#WORKDIR /app +WORKDIR /lib COPY go.* ./ RUN go mod download