From 10741a7d8726e190b132f8e7b4055b5b278b0a30 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Tue, 25 Jun 2024 12:12:56 +0530 Subject: [PATCH] chore: adding check for go 1.15 --- .github/workflows/test-and-deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 5a9d8b997..43b071b21 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -37,6 +37,7 @@ jobs: only-new-issues: true - name: Build + if: matrix.go != '1.15' # Breaking changes in golang 1.16 cause some unit test files to be invalid. run: make install - name: Run Unit Tests