From 0035c87ba8a1330e6450296bac94bda732f1eb1a Mon Sep 17 00:00:00 2001 From: Niki Dokovski Date: Tue, 28 May 2024 09:50:41 +0200 Subject: [PATCH] Update unit-tests.yml Add e2e test execution --- .github/workflows/unit-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 78b4707..120d121 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -23,8 +23,10 @@ jobs: uses: actions/setup-go@v5 with: go-version: '~1.22' - - name: Perform the test + - name: Perform the unit tests run: make test + - name: Perform e2e tests + run: make envtest - name: Report failure uses: nashmaniac/create-issue-action@v1.2 # Only report failures of pushes (PRs are visible through the Checks section) to the default branch