Skip to content

Commit

Permalink
Use regular go for tests
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Weiße <[email protected]>
  • Loading branch information
daniel-weisse committed Mar 12, 2024
1 parent 2759e5b commit a702208
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit a702208

Please sign in to comment.