From 8c18b95a5f4fde2a7754bd9b46bb6c86b1ab5a25 Mon Sep 17 00:00:00 2001 From: Hamza El-Saawy Date: Tue, 19 Apr 2022 16:51:57 -0400 Subject: [PATCH] Splitting out GCS test and build Signed-off-by: Hamza El-Saawy --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6762da403d..843fdbeddd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -189,6 +189,9 @@ jobs: with: go-version: '^1.17.0' + - name: Test + run: make test + - name: Pull busybox image run: docker pull busybox @@ -199,7 +202,5 @@ jobs: run: | docker export base_image_container | gzip > base.tar.gz - - name: Build And Test - run: | - BASE=./base.tar.gz - make all test \ No newline at end of file + - name: Build + run: make BASE=./base.tar.gz all