From a7022080f5f235db22ab4c0629200cae3356fbb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Wei=C3=9Fe?= Date: Tue, 12 Mar 2024 12:54:02 +0100 Subject: [PATCH] Use regular go for tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel Weiße --- .github/workflows/unittests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml index 782e648f..5fed4362 100644 --- a/.github/workflows/unittests.yml +++ b/.github/workflows/unittests.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Test - run: ertgo test -race -count=3 ./... + run: go test -race -count=3 ./... - name: Setup run: | @@ -37,11 +37,11 @@ jobs: working-directory: build - name: Integration test - run: ertgo test -tags integration -b ../build -s + run: go test -tags integration -b ../build -s working-directory: test - name: Integration test (-noenclave) - run: ertgo test -tags integration -b ../build -noenclave + run: go test -tags integration -b ../build -noenclave working-directory: test - name: Build artifact