diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 16a6fa2..dca20f3 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -21,6 +21,12 @@ jobs: - name: Build 3rd-party deps run: make 3rdparty-all + - name: Upload 3rd-party build artifacts + uses: actions/upload-artifact@v4 + with: + name: 3rdparty + path: _3rdparty/tgt + - name: Run unit tests run: make unit-test @@ -51,6 +57,12 @@ jobs: - name: Build 3rd-party deps run: gmake 3rdparty-all + - name: Upload 3rd-party build artifacts + uses: actions/upload-artifact@v4 + with: + name: 3rdparty + path: _3rdparty/tgt + - name: Run unit tests run: gmake unit-test