From e6e1d97f938504dc26474925af70d110cc122a28 Mon Sep 17 00:00:00 2001 From: akeemphilbert Date: Wed, 3 Apr 2024 21:17:13 -0400 Subject: [PATCH] feature: WS-279 updated build for v2 --- .github/workflows/dev.yaml | 4 +++- .github/workflows/release.yaml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index 1eb2bc33..4b62b74c 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -29,7 +29,9 @@ jobs: with: go-version: 1.22.x - name: Run unit tests - run: go test -v ./v2/... + run: | + cd v2 + go test -v ./... # - name: Run MySQL end to end tests # run: go test -v -driver=mysql # - name: Run Mysql projections tests diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7b6c2ee4..5c210719 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,7 +27,9 @@ jobs: with: go-version: 1.22.x - name: Run unit tests - run: go test -v ./v2/... + run: | + cd v2 + go test -v ./... - uses: crazy-max/ghaction-xgo@v2 name: build linux and mac with: