diff options
-rw-r--r-- | .github/workflows/go.test.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/go.test.yml b/.github/workflows/go.test.yml index f38a5762f..d88047d7e 100644 --- a/.github/workflows/go.test.yml +++ b/.github/workflows/go.test.yml @@ -65,3 +65,18 @@ jobs: run: | go install github.com/fatih/faillint ( cd test; go test -race ./... ) + + test-makefile-release: + name: Test Makefile.release + runs-on: ubuntu-latest + steps: + + - name: Install dependencies + run: | + sudo apt-get install make curl + + - name: Check out code + uses: actions/checkout@v2 + + - name: Test Makefile + run: make -f Makefile.release build |