From db5e1b1743a3138bf211ad90eca7fdf23d0f326c Mon Sep 17 00:00:00 2001 From: Hamza El-Saawy <84944216+helsaawy@users.noreply.github.com> Date: Wed, 20 Apr 2022 16:17:00 -0400 Subject: [PATCH] Splitting out GCS test and build (#1361) 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