From 87386f3460b7faa93ddb64b45855c95f2cae335a Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Thu, 20 Feb 2020 21:08:48 -0800 Subject: [PATCH] put lint in separate job --- .github/workflows/main.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a9fce359db..71d0661a51 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,6 +28,19 @@ jobs: with: name: minikube_binaries path: out + lint: + env: + TIME_ELAPSED: time + JOB_NAME: "lint" + GOPOGH_RESULT: "" + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - name: lint + env: + TESTSUITE: lintall + run : make test + continue-on-error: false unit_test: env: TIME_ELAPSED: time @@ -40,11 +53,6 @@ jobs: run : | sudo apt-get update sudo apt-get install -y libvirt-dev - - name: lint - env: - TESTSUITE: lintall - run : make test - continue-on-error: false - name: unit test env: TESTSUITE: unittest