From 90655bfdfc7afba905c7ccc00e2e33a138a691cf Mon Sep 17 00:00:00 2001 From: zzxwill Date: Fri, 7 Aug 2020 00:05:01 +0800 Subject: [PATCH] run e2e before make build and unit-test --- .github/workflows/go.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0f1f3a1fa..4be53be69 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -34,12 +34,6 @@ jobs: with: version: "v0.7.0" - - name: Run Make - run: make - - - name: Run Make test - run: make test - # TODO(zzxwill) This step and the follow one need to be removed after rudr admin:init is ready - name: Install OAM runtime and prepare WorkloadDefinitions/TraitDefinitions run: | @@ -70,4 +64,10 @@ jobs: run: | make e2e-setup make e2e-test - make e2e-cleanup \ No newline at end of file + make e2e-cleanup + + - name: Run Make + run: make + + - name: Run Make test + run: make test