From df055d1b100f86c7c22a66dd76997ac45762b394 Mon Sep 17 00:00:00 2001 From: Vladyslav Len Date: Sun, 22 Sep 2024 21:30:16 +0200 Subject: [PATCH] chore(): updated pipelines --- .github/workflows/gotest.yaml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/gotest.yaml b/.github/workflows/gotest.yaml index 8cf71da..f26d41b 100644 --- a/.github/workflows/gotest.yaml +++ b/.github/workflows/gotest.yaml @@ -3,20 +3,11 @@ name: Go Test on: push: branches: [main] - paths: - - "pg_stream/**" - pull_request: - branches: [main] - paths: - - "pg_stream/**" jobs: test: name: Run tests runs-on: ubuntu-latest - defaults: - run: - working-directory: ./pg_stream steps: - uses: actions/checkout@v3 @@ -26,8 +17,5 @@ jobs: with: go-version: "1.22" - - name: Install dependencies - run: go mod download - - name: Run tests - run: go test -v ./... + run: cd pg_stream && go mod tidy && go test -v ./...