From 73c07fd6e908f161dd4faa4ead33f78bcd69178f Mon Sep 17 00:00:00 2001 From: "Frederick F. Kautz IV" Date: Sun, 4 Apr 2021 20:36:38 -0700 Subject: [PATCH] swapping order of test and integration tests, unit tests should run first Signed-off-by: Frederick F. Kautz IV --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75c0b465..7ef9475d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,10 +72,11 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Test + run: | + make test + - name: Integration test run: | make integration - - name: Test - run: | - make test