From 5ff2f2756d075b1d3a18672b821574c6e57d14c4 Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Tue, 7 Apr 2020 15:18:53 -0400 Subject: [PATCH] fix GitHub Actions workflow --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4c60a7d..b1e2b39 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,8 +23,8 @@ jobs: - name: Install the repository and dependencies run: go get -v -t github.com/$GITHUB_REPOSITORY@$GITHUB_SHA - - name: Check that all subpackages build - run: go build -v github.com/$GITHUB_REPOSITORY/... + - name: Check that subpackages build + run: go build -v -tags static_addons github.com/$GITHUB_REPOSITORY github.com/$GITHUB_REPOSITORY/coreext/... github.com/$GITHUB_REPOSITORY/cmd/... github.com/$GITHUB_REPOSITORY/testutils - name: Run tests run: |