diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d1c32ed..c3e3925 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,4 +20,4 @@ jobs: uses: golangci/golangci-lint-action@v4 with: version: latest - working-directory: . + working-directory: ./... diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b3eaf3f..5c61b2e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: - name: Install dependencies run: | - go get ... + go get ./... - name: Run tests run: | diff --git a/cmd/auth/dockerfile b/cmd/auth/dockerfile index 9a59f75..90c29a6 100644 --- a/cmd/auth/dockerfile +++ b/cmd/auth/dockerfile @@ -1,4 +1,4 @@ -FROM arm64v8/golang:1.23.4-alpine as build +FROM arm64v8/golang:1.23.4-alpine AS build WORKDIR /app diff --git a/cmd/backend/dockerfile b/cmd/backend/dockerfile index 5ee8527..45bce00 100644 --- a/cmd/backend/dockerfile +++ b/cmd/backend/dockerfile @@ -1,4 +1,4 @@ -FROM arm64v8/golang:1.23.4-alpine as build +FROM arm64v8/golang:1.23.4-alpine AS build WORKDIR /app