diff options
author | 2021-02-13 14:03:22 +0100 | |
---|---|---|
committer | 2021-02-13 05:03:22 -0800 | |
commit | 1db575a2ce5b346d07124a840a7d6cefd059a3ed (patch) | |
tree | 27008a627827b66fed7eb06e045d6da86abfea12 | |
parent | 527bee5b6dc02c969a93cfdcdba5fd62e3260aa3 (diff) | |
download | coredns-1db575a2ce5b346d07124a840a7d6cefd059a3ed.tar.gz coredns-1db575a2ce5b346d07124a840a7d6cefd059a3ed.tar.zst coredns-1db575a2ce5b346d07124a840a7d6cefd059a3ed.zip |
A noop target to Makefile.release and run it in CI (#4462)
-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 |